/* ==========================================================
   CITORA.FR — MAIN STYLESHEET
   Style: Corporate French blue — inspired by nom-domaine.fr
   All custom styles. Bootstrap 5 handles grid & components.
   ========================================================== */


/* ============ 1. VARIABLES & TOKENS ============ */
:root {
  /* Brand colors — French corporate blue */
  --brand-primary: #066BD6;
  --brand-primary-dark: #0556AD;
  --brand-primary-soft: #E1EEFB;
  --brand-primary-lighter: #F0F7FD;
  --brand-dark: #0B2447;
  --brand-ink: #1A2138;
  --brand-ink-soft: #5C6A85;
  --brand-paper: #FFFFFF;
  --brand-paper-alt: #F6F8FC;
  --brand-line: #E4E9F2;
  --brand-accent: #00B894;

  /* Status */
  --status-or: #F5A623;
  --status-argent: #9AA5B1;
  --status-bronze: #CD7F32;
  --status-success: #00B894;
  --status-danger: #E74C3C;

  /* Typography */
  --font-display: 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11, 36, 71, 0.06);
  --shadow-md: 0 4px 16px rgba(11, 36, 71, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 36, 71, 0.12);
  --shadow-blue: 0 8px 24px rgba(30, 109, 255, 0.18);
}


/* ============ 2. GLOBAL BASE ============ */
* { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--brand-ink);
  background: var(--brand-paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: -0.02em;
}

a { color: var(--brand-primary); text-decoration: none; }
a:hover { color: var(--brand-primary-dark); }

em {
  font-style: normal;
  color: var(--brand-primary);
  font-weight: ;
}


/* ============ 3. BOOTSTRAP OVERRIDES ============ */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.4rem;
  transition: all 0.2s ease;
}
.btn-lg { padding: 0.9rem 1.8rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

.btn-brand {
  background: var(--brand-primary);
  color: #fff;
  border: 1px solid var(--brand-primary);
}
.btn-brand:hover {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(30, 109, 255, 0.28);
}

.btn-outline-brand {
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid var(--brand-line);
}
.btn-outline-brand:hover {
  background: var(--brand-primary-soft);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
.form-control::placeholder {
	color: rgba(158, 158, 158, 0.75);
	opacity: 1;
}

/* ============ 4. NAVBAR ============ */
.site-nav {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid var(--brand-line);
}

.brand-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.03em;
}
.brand-accent {
  color: var(--brand-primary);
  font-weight: 800;
}

.site-nav .nav-link {
  color: var(--brand-ink);
  font-weight: 500;
  font-size: 0.93rem;
  padding: 0.5rem 1rem;
}
.site-nav .nav-link:hover { color: var(--brand-primary); }


/* ============ 5. HERO ============ */
.hero {
  padding: 4rem 0 2.5rem;
  background: linear-gradient(180deg, var(--brand-paper-alt) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--brand-primary-soft) 0%, transparent 70%);
  opacity: 0.8;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 184, 148, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--brand-ink-soft);
  margin-bottom: 2rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.hero-badge i { color: var(--brand-primary); }

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  color: var(--brand-dark);
  position: relative;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--brand-ink-soft);
  max-width: 800px;
  margin: 0 auto 3.5rem;
  line-height: 1.6;
  position: relative;
}


/* ============ 6. SCAN FORM ============ */
.scan-form {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.scan-form-inner {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--brand-line);
}

.scan-input-group {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.scan-icon {
  position: absolute;
  left: 1.2rem;
  color: var(--brand-ink-soft);
  font-size: 1.1rem;
}

.scan-input {
  border: none;
  background: transparent;
  padding: 0.9rem 1rem 0.9rem 3rem;
  font-size: 1rem;
  color: var(--brand-ink);
  width: 100%;
}
.scan-input:focus { outline: none; box-shadow: none; }

.scan-submit {
  white-space: nowrap;
  flex-shrink: 0;
}

.scan-form-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--brand-ink-soft);
}
.scan-form-meta i { color: var(--brand-accent); margin-right: 0.3rem; }

.hero-socialproof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.socialproof-avatars { display: flex; }
.avatar-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-left: -8px;
  border: 2px solid #fff;
}
.avatar-dot:first-child { margin-left: 0; }
.avatar-dot:nth-child(2) { background: var(--brand-dark); }
.avatar-dot:nth-child(3) { background: var(--brand-accent); }
.avatar-dot:nth-child(4) { background: var(--status-or); }
.avatar-dot::before { content: attr(data-initial); }

.socialproof-text { text-align: left; font-size: 0.9rem; }
.socialproof-text strong { display: block; color: var(--brand-dark); font-weight: 700; }
.socialproof-text span { color: var(--brand-ink-soft); }


/* ============ 7. STATS BAR ============ */
.stats-bar {
  padding: 3rem 0;
  background: var(--brand-paper-alt);
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--brand-ink-soft);
  font-weight: 500;
}


/* ============ 8. SECTIONS ============ */
.section-pad { padding: 4rem 0; }
.section-alt { background: var(--brand-paper-alt); }

.section-head { margin-bottom: 3rem; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--brand-ink-soft);
  max-width: 680px;
  margin: 0 auto;
}


/* ============ 9. STEP CARDS ============ */
.step-card {
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-primary);
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  color: var(--brand-primary);
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.step-text {
  color: var(--brand-ink-soft);
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
}


/* ============ 10. REPORT PREVIEW ============ */
.feature-list { list-style: none; padding: 0; margin: 0 0 1.5rem 0; }
.feature-list li { padding: 0.5rem 0; color: var(--brand-ink); font-size: 0.96rem; }
.feature-list i { color: var(--brand-accent); margin-right: 0.6rem; font-size: 1.1rem; }

.report-preview {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--brand-line);
}

.report-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--brand-line);
  margin-bottom: 1.5rem;
}

.report-url {
  font-size: 0.88rem;
  color: var(--brand-ink-soft);
  font-family: 'SF Mono', Menlo, monospace;
}
.report-url i { margin-right: 0.4rem; }

.report-badge {
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-or { background: #FFF5E0; color: var(--status-or); }

.report-score { text-align: center; margin-bottom: 1.5rem; }

.score-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: conic-gradient(var(--brand-primary) 0% 84%, var(--brand-paper-alt) 84% 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  position: relative;
}
.score-circle::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: #fff;
  border-radius: 50%;
}

.score-value {
  position: relative;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.score-max {
  position: relative;
  font-size: 0.8rem;
  color: var(--brand-ink-soft);
  font-weight: 500;
}

.score-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-accent);
}

.signal-row {
  display: grid;
  grid-template-columns: 1fr 2fr 50px;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--brand-line);
}
.signal-row:last-child { border-bottom: none; }

.signal-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-ink);
}

.signal-bar {
  height: 6px;
  background: var(--brand-paper-alt);
  border-radius: 100px;
  overflow: hidden;
}

.signal-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  border-radius: 100px;
  transition: width 1s ease;
}
.signal-fill[data-fill="88"] { width: 88%; }
.signal-fill[data-fill="76"] { width: 76%; }
.signal-fill[data-fill="71"] { width: 71%; }
.signal-fill[data-fill="92"] { width: 92%; }
.signal-fill[data-fill="95"] { width: 95%; }
.signal-fill[data-fill="82"] { width: 82%; }

.signal-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--brand-dark);
  text-align: right;
}


/* ============ 11. AI QUERY CARDS ============ */
.query-card {
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.query-card:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
}

.query-header {
  padding: 1.2rem 1.8rem;
  background: var(--brand-paper-alt);
  border-bottom: 1px solid var(--brand-line);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.query-number {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brand-primary);
  font-size: 0.85rem;
  flex-shrink: 0;
  letter-spacing: 0.1em;
}

.query-text {
  font-size: 1rem;
  color: var(--brand-dark);
  font-weight: 600;
}

.query-body { padding: 1.3rem 1.8rem; }

.query-source {
  font-size: 0.85rem;
  color: var(--brand-ink-soft);
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.query-source i { margin-right: 0.3rem; color: var(--brand-primary); }

.status-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.status-not-cited { background: #FBEAE8; color: var(--status-danger); }
.status-cited { background: #E0F7F1; color: var(--status-success); }

.query-competitors {
  font-size: 0.92rem;
  color: var(--brand-ink-soft);
  margin: 0;
}
.query-competitors strong { color: var(--brand-dark); font-weight: 700; }


/* ============ 12. PRICING ============ */
.pricing-card {
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card-featured {
  border-color: var(--brand-primary);
  border-width: 2px;
  box-shadow: var(--shadow-blue);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-primary);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-head {
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--brand-line);
  margin-bottom: 1.3rem;
}

.pricing-name { font-size: 1.2rem; margin-bottom: 0.8rem; font-weight: 700; }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.price-value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-period { font-size: 0.88rem; color: var(--brand-ink-soft); }

.pricing-desc { font-size: 0.92rem; color: var(--brand-ink-soft); margin: 0; }

.pricing-features { list-style: none; padding: 0; margin: 0 0 1.5rem 0; }
.pricing-features li { padding: 0.45rem 0; font-size: 0.92rem; }
.pricing-features i { color: var(--brand-accent); margin-right: 0.6rem; font-weight: 700; }

.pricing-note {
  font-size: 0.78rem;
  color: var(--brand-ink-soft);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}
.pricing-note i { color: var(--brand-accent); margin-right: 0.3rem; }


/* ============ 13. FAQ ============ */
.faq-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--brand-line);
}

.faq-accordion .accordion-button {
  background: transparent;
  border: none;
  padding: 1.3rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-dark);
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--brand-primary);
}
.faq-accordion .accordion-button:focus { box-shadow: none; }

.faq-accordion .accordion-body {
  padding: 0 0 1.3rem 0;
  color: var(--brand-ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ============ 14. FINAL CTA ============ */
.final-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(30, 109, 255, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-weight: 800;
  position: relative;
  letter-spacing: -0.02em;
}
.final-cta-title em {
  color: #fff;
  border-bottom: 3px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}

.final-cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  position: relative;
}

.final-cta-btn {
  background: #fff;
  color: var(--brand-primary);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
}
.final-cta-btn:hover {
  background: var(--brand-paper-alt);
  color: var(--brand-primary-dark);
  transform: translateY(-2px);
}


/* ============ 15. FOOTER ============ */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--brand-paper-alt);
  border-top: 1px solid var(--brand-line);
}

.footer-brand { margin-bottom: 1rem; }

.footer-tagline {
  color: var(--brand-ink-soft);
  font-size: 0.92rem;
  margin-bottom: 1.2rem;
  max-width: 340px;
}

.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--brand-ink-soft);
  font-weight: 500;
}
.footer-badge i { color: var(--brand-accent); }

.footer-title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: 0.3rem 0; }
.footer-links a { color: var(--brand-ink-soft); font-size: 0.88rem; }
.footer-links a:hover { color: var(--brand-primary); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--brand-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--brand-ink-soft);
}

.footer-lang { display: inline-flex; align-items: center; gap: 0.4rem; }


/* ============ 16. RESPONSIVE ============ */
@media (max-width: 991px) {
  .section-pad { padding: 3.5rem 0; }
  .hero { padding: 2.5rem 0 3rem; }
}

@media (max-width: 767px) {
  .scan-form-inner { flex-direction: column; border-radius: var(--radius-md); padding: 0.7rem; }
  .scan-input { padding: 0.8rem 1rem 0.8rem 3rem; }
  .scan-submit { width: 100%; }
  .pricing-card-featured { transform: none; }
  .hero-socialproof { flex-direction: column; }
  .socialproof-text { text-align: center; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .query-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}
/* ==========================================================
   CITORA.FR — EXTENDED STYLES
   Additional styles for report, loading, legal, contact pages.
   Append to main.css
   ========================================================== */


/* ============ REPORT HERO ============ */
.report-hero {
    padding: 3rem 0 2rem;
    background: linear-gradient(180deg, var(--brand-paper-alt) 0%, #fff 100%);
}

.report-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--brand-line);
    flex-wrap: wrap;
    gap: 1rem;
}

.report-meta-url {
    font-family: 'SF Mono', Menlo, monospace;
    font-size: 1rem;
    color: var(--brand-dark);
    font-weight: 600;
}
.report-meta-url i { color: var(--brand-primary); margin-right: 0.5rem; }

.report-meta-date {
    font-size: 0.88rem;
    color: var(--brand-ink-soft);
}

.report-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
    text-align: center;
    color: var(--brand-dark);
}

.report-subtitle {
    font-size: 1.1rem;
    color: var(--brand-ink-soft);
    text-align: center;
    margin-bottom: 0;
}


/* ============ REPORT SECTIONS ============ */
.report-section {
    padding: 2rem 0;
}


/* ============ SCORE PANEL (BIG) ============ */
.score-panel {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.score-panel-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--brand-ink-soft);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.score-big-wrap { display: flex; justify-content: center; margin-bottom: 1.5rem; }

.score-big-circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.score-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-track {
    fill: none;
    stroke: var(--brand-paper-alt);
    stroke-width: 14;
}

.score-fill {
    fill: none;
    stroke: var(--brand-primary);
    stroke-width: 14;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease;
}

.score-big-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score-big-num {
    font-size: 4rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1;
    letter-spacing: -0.03em;
}

.score-big-max {
    font-size: 0.9rem;
    color: var(--brand-ink-soft);
    font-weight: 500;
}

.score-tier {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.score-tier i { font-size: 1.2rem; }

.score-tier-or {
    background: linear-gradient(135deg, #FFF5E0, #FFE7B8);
    color: var(--status-or);
}
.score-tier-argent {
    background: linear-gradient(135deg, #F0F3F7, #DDE3EC);
    color: var(--status-argent);
}
.score-tier-bronze {
    background: linear-gradient(135deg, #F8E8D6, #EFD3B1);
    color: var(--status-bronze);
}

.score-summary {
    font-size: 1rem;
    color: var(--brand-ink-soft);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.score-actions {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}


/* ============ PANELS ============ */
.panel {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.panel-head {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--brand-line);
}

.panel-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
}
.panel-icon {
    color: var(--brand-primary);
    margin-right: 0.5rem;
}

.panel-desc {
    color: var(--brand-ink-soft);
    font-size: 0.95rem;
    margin: 0;
}


/* ============ SIGNAL DETAIL ============ */
.signals-list { display: flex; flex-direction: column; gap: 1.2rem; }

.signal-detail {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--brand-line);
}
.signal-detail:last-child { border-bottom: none; }

.signal-detail-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.signal-detail-name {
    font-weight: 600;
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.signal-icon-small {
    width: 32px;
    height: 32px;
    background: var(--brand-primary-soft);
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 0.9rem;
}

.signal-detail-score {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}
.score-excellent { color: var(--brand-accent); }
.score-good { color: var(--brand-primary); }
.score-low { color: var(--status-or); }
.score-critical { color: var(--status-danger); }

.signal-detail-bar {
    height: 8px;
    background: var(--brand-paper-alt);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.signal-detail-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    border-radius: 100px;
    transition: width 1s ease;
}
.signal-fill-low { background: linear-gradient(90deg, var(--status-or), #FFCE5C); }
.signal-fill-critical { background: linear-gradient(90deg, var(--status-danger), #E58B82); }

.signal-detail-note {
    font-size: 0.88rem;
    color: var(--brand-ink-soft);
}


/* ============ QUERY SOURCE ROW ============ */
.query-source-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.query-locked {
    background: var(--brand-paper-alt);
    border: 1px dashed var(--brand-line);
    border-radius: var(--radius-sm);
    padding: 1rem;
    color: var(--brand-ink-soft);
    font-size: 0.9rem;
    text-align: center;
    font-style: italic;
}
.query-locked i { color: var(--brand-primary); margin-right: 0.4rem; }


/* ============ PERCEPTION PANEL ============ */
.perception-panel {
    background: linear-gradient(135deg, var(--brand-primary-lighter), #fff);
    border: 1px solid var(--brand-primary-soft);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}

.perception-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.perception-label i { margin-right: 0.4rem; }

.perception-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--brand-dark);
    margin: 0 0 1rem 0;
    font-style: italic;
    border-left: 3px solid var(--brand-primary);
    padding-left: 1.2rem;
}

.perception-source {
    font-size: 0.85rem;
    color: var(--brand-ink-soft);
}


/* ============ HESITATION PANEL ============ */
.hesitation-panel {
    background: #FFF5F3;
    border: 1px solid #FFD8D0;
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.hesitation-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--status-danger);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.hesitation-label i { margin-right: 0.4rem; }

.hesitation-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--brand-dark);
}

.hesitation-text {
    color: var(--brand-ink-soft);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.hesitation-evidence {
    font-size: 0.88rem;
    padding: 0.8rem;
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1px solid var(--brand-line);
}

.evidence-label {
    font-weight: 600;
    color: var(--brand-ink-soft);
    margin-right: 0.5rem;
}

.hesitation-evidence code {
    background: var(--brand-paper-alt);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: var(--status-danger);
    font-size: 0.85rem;
}


/* ============ UPSELL PANEL ============ */
.upsell-panel {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary-dark));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.upsell-panel::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 109, 255, 0.3) 0%, transparent 60%);
}

.upsell-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(255,255,255,0.15);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    position: relative;
}

.upsell-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}
.upsell-title .text-brand { color: #4A9DFF; }

.upsell-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.upsell-price-old {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
}

.upsell-price-new {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}

.upsell-price-badge {
    background: var(--status-danger);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
}

.upsell-text {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    position: relative;
}

.upsell-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    position: relative;
}
.upsell-features li {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
}
.upsell-features i {
    color: #4A9DFF;
    margin-right: 0.4rem;
}

.upsell-btn {
    background: #fff;
    color: var(--brand-primary);
    font-weight: 700;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    position: relative;
}
.upsell-btn:hover {
    background: var(--brand-paper-alt);
    color: var(--brand-primary-dark);
    transform: translateY(-2px);
}

.upsell-guarantee {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    margin-top: 1rem;
    position: relative;
}


/* ============ PAGE HERO (static pages, blog, FAQ) ============ */
.page-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(180deg, var(--brand-paper-alt) 0%, #fff 100%);
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--brand-dark);
}

.page-lead {
    font-size: 1.1rem;
    color: var(--brand-ink-soft);
    margin: 0;
}

.page-date {
    font-size: 0.88rem;
    color: var(--brand-ink-soft);
    margin: 0;
}


/* ============ LEGAL CONTENT ============ */
.legal-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--brand-ink);
}

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--brand-dark);
}
.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p { margin-bottom: 1rem; }
.legal-content ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.legal-content li { margin-bottom: 0.4rem; }
.legal-content .lead {
    font-size: 1.2rem;
    color: var(--brand-dark);
    font-weight: 500;
    border-left: 3px solid var(--brand-primary);
    padding-left: 1.2rem;
    margin-bottom: 2rem;
}


/* ============ CONTACT FORM ============ */
.contact-form {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--brand-dark);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.contact-form .form-control {
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-sm);
    padding: 0.7rem 0.9rem;
    font-size: 0.95rem;
}
.contact-form .form-control:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px var(--brand-primary-soft);
}

.contact-alt {
    text-align: center;
    color: var(--brand-ink-soft);
    font-size: 0.92rem;
}
.contact-alt a { font-weight: 600; }


/* ============ ALERTS ============ */
.alert {
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    border: none;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.alert i { margin-right: 0.5rem; }

.alert-success {
    background: #E0F7F1;
    color: var(--status-success);
}

.alert-danger {
    background: #FBEAE8;
    color: var(--status-danger);
}
.alert-danger ul { padding-left: 1.2rem; margin: 0; }


/* ============ UTILITY ============ */
.text-brand { color: var(--brand-primary); }


/* ============ STICKY NAVBAR ============ */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.site-nav.site-nav-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(11, 36, 71, 0.06);
    padding: 0.7rem 0;
}

.site-nav-scrolled .brand-logo {
    font-size: 1.3rem;
}


/* ============ NAV LINK ACTIVE STATE ============ */
.site-nav .nav-link.active {
    color: var(--brand-primary);
    font-weight: 600;
}

.site-nav .nav-link {
    position: relative;
}

.site-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--brand-primary);
    border-radius: 2px;
}


/* ============ DETAIL BLOCKS (how it works) ============ */
.detail-block {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--brand-line);
}
.detail-block:last-child {
	border-bottom: none;
	margin: 0;
	padding: 0;
}

.detail-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.detail-title i { font-size: 1.8rem; }

.detail-block p { font-size: 1rem; line-height: 1.7; color: var(--brand-ink); margin-bottom: 1rem; }
.detail-block ul { padding-left: 1.5rem; }
.detail-block li { padding: 0.3rem 0; }

.detail-table {
    width: 100%;
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.detail-table th {
    background: var(--brand-primary-soft);
    padding: 0.8rem 1rem;
    font-weight: 700;
    color: var(--brand-dark);
    text-align: left;
    font-size: 0.88rem;
}
.detail-table td {
    padding: 0.8rem 1rem;
    border-top: 1px solid var(--brand-line);
    font-size: 0.92rem;
}


/* ============ FEATURE BOXES (pricing) ============ */
.feature-box {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    height: 100%;
    transition: all 0.3s ease;
}
.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.feature-box-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-box-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--brand-dark);
}

.feature-box p { color: var(--brand-ink-soft); font-size: 0.95rem; margin: 0; }


/* ============ PAYMENT INFO ============ */
.payment-info {
    background: var(--brand-primary-lighter);
    border: 1px solid var(--brand-primary-soft);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--brand-ink);
    font-weight: 500;
}
.payment-badge i { color: var(--brand-primary); }


/* ============ SECTION PREVIEW (exemple rapport) ============ */
.section-preview {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}
.section-preview:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-sm);
}

.section-preview-num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-primary);
    letter-spacing: 0.15em;
    margin-bottom: 0.7rem;
}

.section-preview h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
}

.section-preview p {
    font-size: 0.9rem;
    color: var(--brand-ink-soft);
    margin: 0;
    line-height: 1.5;
}


/* ============ TRUST STRIP (brand logos) ============ */
.trust-strip {
    padding: 3rem 0 2.5rem;
    background: #fff;
    border-bottom: 1px solid var(--brand-line);
}

.trust-label {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.8rem;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem 3.5rem;
    opacity: 0.65;
    transition: opacity 0.3s ease;
}
.trust-logos:hover { opacity: 0.85; }

.trust-logo {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--brand-ink-soft);
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    filter: grayscale(100%);
}
.trust-logo:hover {
    color: var(--brand-dark);
    filter: grayscale(0);
}

.trust-logo span {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-top: 0.2rem;
}

.trust-logo .accent {
    color: var(--brand-primary);
    display: inline;
    margin: 0;
    font-size: inherit;
    letter-spacing: 0;
}


/* ============ TESTIMONIALS ============ */
.testimonials-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 0.5rem 1.2rem;
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--brand-ink-soft);
}
.testimonials-summary strong {
    color: var(--brand-dark);
    font-weight: 700;
}

.testimonials-stars {
    color: #FFB400;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}
.testimonials-stars i { margin-right: 1px; }

.testimonial-card {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.testimonial-stars {
    color: #FFB400;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.testimonial-stars i { margin-right: 2px; }

.testimonial-quote {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--brand-ink);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--brand-line);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.testimonial-card:nth-child(2) .testimonial-avatar { background: var(--brand-dark); }
.testimonial-card:nth-child(3) .testimonial-avatar { background: var(--brand-accent); }
.col-lg-4:nth-child(2) .testimonial-avatar { background: var(--brand-dark); }
.col-lg-4:nth-child(3) .testimonial-avatar { background: var(--brand-accent); }

.testimonial-info strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.1rem;
}
.testimonial-info span {
    font-size: 0.82rem;
    color: var(--brand-ink-soft);
}


/* ============ SOCIAL PROOF RATING ============ */
.socialproof-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.2rem;
    font-size: 0.82rem;
    color: var(--brand-ink-soft);
}
.socialproof-rating i {
    color: #FFB400;
    font-size: 0.85rem;
}
.socialproof-rating span {
    margin-left: 0.3rem;
    color: var(--brand-ink);
    font-weight: 500;
}


/* ============ RESPONSIVE - trust/testimonials ============ */
@media (max-width: 767px) {
    .trust-logos { gap: 2rem 2.5rem; }
    .trust-logo { font-size: 0.9rem; }
    .testimonial-card { padding: 1.5rem 1.3rem; }
}


/* ============ EMAIL CAPTURE PANEL ============ */
.email-capture {
    background: linear-gradient(135deg, var(--brand-primary-lighter), #fff);
    border: 2px solid var(--brand-primary-soft);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
}

.email-capture-head { margin-bottom: 1.5rem; }

.email-capture-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.email-capture h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.email-capture p {
    color: var(--brand-ink-soft);
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.email-capture-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 1.5rem auto 0;
    flex-wrap: wrap;
    justify-content: center;
}

.email-capture-form .form-control {
    flex: 1;
    min-width: 200px;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}
.email-capture-form .form-control:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px var(--brand-primary-soft);
    outline: none;
}

.email-capture-form .btn {
    padding: 0.8rem 1.5rem;
    white-space: nowrap;
}


/* ============ STATUS LOCKED TAG ============ */
.status-locked {
    background: var(--brand-paper-alt);
    color: var(--brand-ink-soft);
    border: 1px dashed var(--brand-line);
}


/* ============ DOWNLOAD PANEL ============ */
.download-panel {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.download-panel h2 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}
.download-panel h2 i {
    color: var(--brand-primary);
    margin-right: 0.5rem;
}
.download-panel p {
    color: var(--brand-ink-soft);
    margin-bottom: 1.5rem;
}


/* ============ UPSELL PRICE ============ */
.upsell-price-period {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-left: 0.5rem;
}


@media (max-width: 767px) {
    .email-capture-form { flex-direction: column; }
    .email-capture-form .form-control,
    .email-capture-form .btn { width: 100%; }
}


/* ============ REPORT DETAIL LAYOUT ============ */
.page-rapport-detail { background: var(--brand-paper-alt); }

.report-layout { padding: 2rem 0 4rem; }

/* PROMO BAR */
.promo-bar {
    background: linear-gradient(90deg, var(--brand-dark), var(--brand-primary-dark));
    color: #fff;
    padding: 0.8rem 0;
    position: sticky;
    top: 70px;
    z-index: 100;
}
.promo-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.92rem;
}
.promo-bar-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.7rem;
    background: rgba(255,255,255,0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
}
.promo-bar-btn {
    background: #fff;
    color: var(--brand-primary);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s;
}
.promo-bar-btn:hover { background: var(--brand-primary-lighter); color: var(--brand-primary-dark); }

/* SIDEBAR */
.report-sidebar {
    padding-right: 1.5rem;
}
.sidebar-inner {
    position: sticky;
    top: 140px;
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
}
.sidebar-head {
    padding: 0 0.5rem 1rem 0.5rem;
    border-bottom: 1px solid var(--brand-line);
    margin-bottom: 0.8rem;
}
.sidebar-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--brand-ink-soft);
    margin-bottom: 0.5rem;
}
.sidebar-progress {
    height: 5px;
    background: var(--brand-paper-alt);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}
.sidebar-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    border-radius: 100px;
    transition: width 1s ease;
}
.sidebar-progress-text {
    font-size: 0.75rem;
    color: var(--brand-ink-soft);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.8rem;
    font-size: 0.88rem;
    color: var(--brand-ink-soft);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.sidebar-nav-item:hover { background: var(--brand-paper-alt); color: var(--brand-dark); }
.sidebar-nav-item.active {
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    font-weight: 600;
}
.sidebar-nav-item i:first-child { font-size: 0.95rem; }
.sidebar-nav-lock i:last-child {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--brand-ink-soft);
}

/* REPORT MAIN */
.report-main > section { margin-bottom: 1.5rem; }

.report-hero-compact {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.report-h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
}
.report-h1 em {
    font-style: normal;
    color: var(--brand-primary);
}

/* SCORE HERO CARD */
.score-hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--brand-line);
    border-bottom: 1px solid var(--brand-line);
    margin-bottom: 1.5rem;
}
.score-hero-left { text-align: center; }
.score-hero-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--brand-ink-soft);
    margin-bottom: 0.8rem;
}
.score-hero-circle {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 0.8rem;
}
.score-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-track { fill: none; stroke: var(--brand-paper-alt); stroke-width: 14; }
.score-fill { fill: none; stroke: var(--brand-primary); stroke-width: 14; stroke-linecap: round; transition: stroke-dashoffset 1.5s ease; }
.score-hero-value {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.score-hero-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1;
    letter-spacing: -0.03em;
}
.score-hero-max { font-size: 0.85rem; color: var(--brand-ink-soft); }

.score-hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.score-stat {
    background: var(--brand-paper-alt);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
}
.score-stat-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.score-stat-val small { font-size: 0.8rem; color: var(--brand-ink-soft); }
.score-stat-lbl {
    font-size: 0.78rem;
    color: var(--brand-ink-soft);
    font-weight: 500;
}

.score-summary-text {
    text-align: center;
    color: var(--brand-ink-soft);
    margin: 0;
    font-size: 0.95rem;
}

/* REPORT BLOCKS */
.report-block { scroll-margin-top: 140px; }

.block-card {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.block-head {
    margin-bottom: 1.5rem;
}
.block-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.block-icon { color: var(--brand-primary); font-size: 1.1em; }
.block-desc {
    color: var(--brand-ink-soft);
    margin: 0;
    font-size: 0.95rem;
}

.premium-badge {
    font-size: 0.68rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* BENCHMARK */
.benchmark-row { margin: 1.5rem 0 1rem; padding: 0 1rem; }
.benchmark-bar { position: relative; }
.benchmark-track {
    height: 16px;
    background: var(--brand-paper-alt);
    border-radius: 100px;
    position: relative;
    overflow: visible;
    margin: 3rem 0 3.5rem;
}
.benchmark-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    border-radius: 100px;
    transition: width 1s ease;
}
.benchmark-industry-marker {
    position: absolute;
    top: -40px;
    transform: translateX(-50%);
    color: var(--brand-ink-soft);
}
.benchmark-industry-marker::after {
    content: '';
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 28px;
    background: var(--brand-ink-soft);
    border-radius: 1px;
}
.benchmark-you-marker {
    position: absolute;
    bottom: -55px;
    transform: translateX(-50%);
}
.benchmark-you-marker::before {
    content: '';
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 28px;
    background: var(--brand-primary);
    border-radius: 1px;
}
.benchmark-marker-label {
    text-align: center;
    font-size: 0.78rem;
    line-height: 1.3;
}
.benchmark-marker-label strong { font-size: 0.88rem; color: var(--brand-dark); }
.benchmark-you strong { color: var(--brand-primary); font-size: 1rem; }

.benchmark-scale {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--brand-ink-soft);
    margin-top: 0.5rem;
}

.benchmark-verdict {
    background: var(--brand-paper-alt);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    font-size: 0.93rem;
    line-height: 1.5;
}
.benchmark-verdict i { margin-right: 0.4rem; }

/* PERCEPTION */
.perception-block {
    background: linear-gradient(135deg, var(--brand-primary-lighter), #fff);
    border: 1px solid var(--brand-primary-soft);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

/* SIGNALS GRID */
.signals-grid {
    display: grid;
    gap: 1.3rem;
}

/* SCHEMA GRID */
.schema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}
.schema-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-md);
    background: #fff;
}
.schema-status { font-size: 1.2rem; }
.schema-ok .schema-status i { color: var(--status-success); }
.schema-missing .schema-status i { color: var(--status-danger); }
.schema-ok { border-color: var(--status-success); background: #F0FBF6; }
.schema-missing { background: #FFF8F6; }
.schema-info { flex: 1; }
.schema-name {
    font-weight: 700;
    color: var(--brand-dark);
    font-family: 'SF Mono', Menlo, monospace;
    font-size: 0.88rem;
}
.schema-desc {
    font-size: 0.78rem;
    color: var(--brand-ink-soft);
    margin-top: 0.15rem;
}
.schema-verdict {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.schema-ok .schema-verdict { color: var(--status-success); }
.schema-missing .schema-verdict { color: var(--status-danger); }

.schema-summary {
    padding: 1rem;
    background: var(--brand-primary-lighter);
    border-radius: var(--radius-sm);
    font-size: 0.93rem;
    color: var(--brand-ink);
}

/* INSTANT WIN */
.instant-win-card {
    background: linear-gradient(135deg, #F0FBF6, #fff);
    border: 1px solid #C8EDDC;
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.instant-win-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.instant-win-icon {
    width: 48px;
    height: 48px;
    background: var(--status-success);
    color: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.instant-win-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0 0 0.3rem 0;
}
.instant-win-desc {
    color: var(--brand-ink-soft);
    margin: 0;
    font-size: 0.93rem;
}
.free-badge {
    margin-left: auto;
    background: var(--status-success);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.instant-win-hint {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--brand-ink-soft);
    margin-bottom: 0;
}
.instant-win-hint i { color: var(--brand-primary); margin-right: 0.3rem; }

/* CODE BLOCK */
.code-block {
    position: relative;
    background: #0B2447;
    color: #E1EEFB;
    padding: 1.2rem;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    overflow-x: auto;
}
.code-block pre {
    margin: 0;
    color: #E1EEFB;
    font-family: 'SF Mono', Menlo, monospace;
    white-space: pre-wrap;
    word-break: break-word;
}
.code-copy-btn {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}
.code-copy-btn:hover { background: rgba(255,255,255,0.2); }
.code-copy-btn i { margin-right: 0.3rem; }

/* HEALTH METRICS */
.health-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.health-metric {
    text-align: center;
    padding: 1.2rem 0.8rem;
    background: var(--brand-paper-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--brand-line);
}
.health-grade {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
}
.health-grade-val { font-size: 1.8rem; color: var(--brand-primary); }
.health-grade-a { color: var(--status-success); }
.health-grade-b { color: var(--brand-primary); }
.health-grade-c { color: var(--status-or); }
.health-grade-d { color: var(--status-danger); }

.health-label { font-weight: 700; color: var(--brand-dark); font-size: 0.9rem; margin-bottom: 0.15rem; }
.health-sub { font-size: 0.78rem; color: var(--brand-ink-soft); }

/* ISSUES FOUND */
.issues-found {
    background: #FFF8F6;
    border: 1px solid #FFD8D0;
    border-radius: var(--radius-md);
    padding: 1.2rem;
}
.issues-found-head {
    font-weight: 700;
    color: var(--status-danger);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}
.issues-found-head i { margin-right: 0.3rem; }
.issues-list { list-style: none; padding: 0; margin: 0; }
.issues-list li {
    display: flex;
    gap: 0.7rem;
    padding: 0.5rem 0;
    border-top: 1px solid #FFD8D0;
    font-size: 0.9rem;
}
.issues-list li:first-child { border-top: none; }
.issues-list i {
    color: var(--status-danger);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.issues-list strong {
    display: block;
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: 0.15rem;
}
.issues-list span { color: var(--brand-ink-soft); font-size: 0.85rem; }

/* BLIND SPOTS */
.blind-spot-item {
    display: flex;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--brand-line);
}
.blind-spot-item:last-child { border-bottom: none; }
.blind-spot-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--status-danger);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.blind-spot-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.4rem;
}
.blind-spot-content p {
    color: var(--brand-ink-soft);
    margin-bottom: 0.7rem;
    font-size: 0.93rem;
}
.blind-spot-evidence {
    font-size: 0.85rem;
    padding: 0.5rem 0.7rem;
    background: var(--brand-paper-alt);
    border-radius: var(--radius-sm);
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
}
.blind-spot-evidence code {
    background: #fff;
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    color: var(--status-danger);
    font-family: 'SF Mono', Menlo, monospace;
    font-size: 0.82rem;
}

/* LOCKED BLOCKS */
.locked-block {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    overflow: hidden;
}
.locked-preview {
    position: relative;
    min-height: 200px;
    margin-top: 1rem;
}
.locked-blur {
    filter: blur(4px);
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
}
.fake-priority,
.fake-competitor {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--brand-paper-alt);
    border-radius: var(--radius-sm);
    color: var(--brand-dark);
    font-weight: 600;
}
.locked-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.95) 100%);
    gap: 0.8rem;
}
.locked-icon {
    width: 56px;
    height: 56px;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.locked-text {
    font-weight: 600;
    color: var(--brand-dark);
    font-size: 0.95rem;
}

/* SHARE CARD */
.share-card {
    background: #fff;
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.share-head { margin-bottom: 1.5rem; }
.share-head h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.3rem;
}
.share-head h2 i { color: var(--brand-primary); margin-right: 0.4rem; }
.share-head p { color: var(--brand-ink-soft); margin: 0; font-size: 0.9rem; }

.share-card-preview {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary-dark));
    border-radius: var(--radius-md);
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: #fff;
    margin-bottom: 1.2rem;
}
.share-preview-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    opacity: 0.7;
    margin-bottom: 1rem;
}
.share-preview-domain {
    font-family: 'SF Mono', Menlo, monospace;
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 1rem;
}
.share-preview-score {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: #4A9DFF;
    margin-bottom: 0.3rem;
    letter-spacing: -0.03em;
}
.share-preview-score small { font-size: 1.2rem; opacity: 0.7; }
.share-preview-tier {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(255,255,255,0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.share-preview-url {
    font-size: 0.75rem;
    opacity: 0.6;
    letter-spacing: 0.1em;
}

.share-buttons {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
}
.share-buttons .btn { flex: 1; min-width: 140px; }

/* EXIT POPUP */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.exit-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 36, 71, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.exit-popup-modal {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    max-width: 480px;
    width: calc(100% - 2rem);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(11, 36, 71, 0.3);
    animation: popupIn 0.3s ease;
}
@keyframes popupIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.exit-popup-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--brand-ink-soft);
    transition: all 0.2s;
}
.exit-popup-close:hover { background: var(--brand-paper-alt); color: var(--brand-dark); }

.exit-popup-content { text-align: center; }
.exit-popup-score {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--brand-primary-soft);
    border: 3px solid var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.exit-popup-score-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1;
}
.exit-popup-content h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.6rem;
}
.exit-popup-content > p {
    color: var(--brand-ink-soft);
    margin-bottom: 1.3rem;
    font-size: 0.95rem;
}

.exit-popup-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
    background: var(--brand-paper-alt);
    border-radius: var(--radius-sm);
    padding: 1rem;
}
.exit-popup-features li {
    padding: 0.4rem 0;
    font-size: 0.93rem;
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.exit-popup-features i { color: var(--status-success); font-size: 1.1rem; }

.exit-popup-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 0.3rem;
}
.exit-popup-price-old {
    font-size: 1.1rem;
    color: var(--brand-ink-soft);
    text-decoration: line-through;
}
.exit-popup-price-new {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    letter-spacing: -0.03em;
}
.exit-popup-price-label {
    font-size: 0.78rem;
    color: var(--brand-ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
.exit-popup-hint {
    font-size: 0.8rem;
    color: var(--brand-ink-soft);
    margin-top: 0.6rem;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .report-sidebar { display: none !important; }
    .report-main { padding: 0 1rem; }
    .score-hero-card { grid-template-columns: 1fr; }
    .promo-bar { top: 0; }
}
@media (max-width: 767px) {
    .block-card, .report-hero-compact, .locked-block, .instant-win-card, .share-card, .exit-popup-modal { padding: 1.3rem; }
    .score-hero-right { grid-template-columns: 1fr 1fr; }
    .promo-bar-inner { font-size: 0.8rem; gap: 0.5rem; }
    .promo-bar-text { display: block; width: 100%; text-align: center; }
}


/* ============ LOADING PAGE V2 — Final design ============ */
.page-loading {
    background: linear-gradient(180deg, #F0F7FD 0%, #fff 100%);
    min-height: 100vh;
}
.loading-page {
    padding: 4rem 0;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
}

.loading-card-v2 {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 50px rgba(6, 107, 214, 0.08), 0 4px 12px rgba(11, 36, 71, 0.04);
    border: 1px solid var(--brand-line);
    text-align: center;
}

.loading-domain-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: var(--brand-primary-soft);
    border-radius: 100px;
    font-family: 'SF Mono', Menlo, monospace;
    font-size: 0.9rem;
    color: var(--brand-dark);
    font-weight: 600;
    margin-bottom: 2rem;
}
.loading-domain-pill i { color: var(--brand-primary); }

/* ORB */
.loading-orb-wrap {
    display: flex;
    justify-content: center;
    margin: 1rem 0 2rem;
}
.loading-orb {
    position: relative;
    width: 120px;
    height: 120px;
}
.loading-orb-ring {
    position: absolute;
    inset: 0;
    border: 3px solid var(--brand-primary-soft);
    border-top: 3px solid var(--brand-primary);
    border-radius: 50%;
    animation: orb-spin 1.4s linear infinite;
}
.loading-orb-ring-2 {
    inset: 12px;
    border-color: var(--brand-primary-lighter);
    border-top-color: var(--brand-accent);
    animation: orb-spin 2s linear infinite reverse;
}
.loading-orb-center {
    position: absolute;
    inset: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(6, 107, 214, 0.3);
    animation: orb-pulse 2s ease-in-out infinite;
}
@keyframes orb-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes orb-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.92); }
}

.loading-title-v2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.loading-subtitle-v2 {
    font-size: 0.95rem;
    color: var(--brand-ink-soft);
    margin-bottom: 2rem;
}

/* Progress bar */
.loading-bar-v2 {
    width: 100%;
    height: 6px;
    background: var(--brand-paper-alt);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.loading-bar-fill-v2 {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    border-radius: 100px;
    width: 5%;
    transition: width 0.6s ease;
    box-shadow: 0 0 10px rgba(6, 107, 214, 0.4);
}

/* Current caption */
.loading-current {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 0.4rem;
    min-height: 1.5rem;
}
.loading-current-spin {
    color: var(--brand-primary);
    animation: orb-spin 1s linear infinite;
    font-size: 1rem;
}
.loading-hint-v2 {
    font-size: 0.85rem;
    color: var(--brand-ink-soft);
    margin-bottom: 2rem;
    min-height: 1.2rem;
}

/* Compact step dots */
.loading-steps-v2 {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}
.loading-step-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.7rem;
    min-width: 64px;
    font-size: 0.72rem;
    color: var(--brand-ink-soft);
    transition: all 0.3s;
}
.loading-step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-line);
    transition: all 0.3s;
}
.loading-step-v2.step-active {
    color: var(--brand-primary);
    font-weight: 600;
}
.loading-step-v2.step-active .loading-step-dot {
    background: var(--brand-primary);
    box-shadow: 0 0 0 5px var(--brand-primary-soft);
    animation: pulse-dot 1.2s ease-in-out infinite;
}
.loading-step-v2.step-done {
    color: var(--status-success);
}
.loading-step-v2.step-done .loading-step-dot {
    background: var(--status-success);
}
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.loading-note-v2 {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--brand-line);
    font-size: 0.82rem;
    color: var(--brand-ink-soft);
    margin-bottom: 0;
}
.loading-note-v2 i {
    color: var(--brand-primary);
    margin-right: 0.3rem;
}

@media (max-width: 575px) {
    .loading-card-v2 { padding: 2rem 1.3rem; }
    .loading-title-v2 { font-size: 1.4rem; }
    .loading-orb { width: 90px; height: 90px; }
    .loading-orb-center { inset: 20px; font-size: 1.3rem; }
    .loading-steps-v2 { gap: 0.2rem; }
    .loading-step-v2 { min-width: 50px; font-size: 0.68rem; }
}


/* ============ REPORT LAYOUT FIXES (v2 narrower) ============ */

/* Make main content more readable by narrowing it */
.page-rapport-detail .report-main {
    max-width: 780px;
}

/* Smaller padding on blocks for less clunky feel */
.page-rapport-detail .block-card,
.page-rapport-detail .report-hero-compact,
.page-rapport-detail .locked-block,
.page-rapport-detail .instant-win-card,
.page-rapport-detail .share-card,
.page-rapport-detail .perception-block,
.page-rapport-detail .hesitation-block,
.page-rapport-detail .upsell-panel,
.page-rapport-detail .email-capture {
    padding: 1.6rem 1.8rem;
}

.page-rapport-detail .report-h1 {
    font-size: 1.75rem;
}

.page-rapport-detail .block-title {
    font-size: 1.15rem;
}

.page-rapport-detail .score-hero-card {
    gap: 1.5rem;
    padding: 1.2rem 0;
}

.page-rapport-detail .score-hero-circle {
    width: 140px;
    height: 140px;
}
.page-rapport-detail .score-hero-num {
    font-size: 2.5rem;
}

/* Tighter spacing on report blocks */
.page-rapport-detail .report-main > section {
    margin-bottom: 1.2rem;
}

/* Sidebar styling tweaks */
.page-rapport-detail .report-sidebar {
    padding-right: 1rem;
}

.page-rapport-detail .sidebar-inner {
    padding: 1.2rem 0.8rem;
    font-size: 0.85rem;
}

.page-rapport-detail .sidebar-nav-item {
    padding: 0.5rem 0.7rem;
    font-size: 0.82rem;
}

@media (max-width: 991px) {
    .page-rapport-detail .report-main {
        max-width: 100%;
    }
}


/* ============ LAYOUT FIXES v5 ============ */

/* Report layout — proper sidebar + main split */
.report-layout {
    padding: 2rem 0 4rem;
    background: var(--brand-paper-alt);
    min-height: 80vh;
}

.report-main-col {
    /* Max width for readability */
    max-width: 860px;
}

.report-main-col > section {
    margin-bottom: 2.2rem;
}

/* Sidebar stays sticky */
.report-layout aside .sidebar-inner {
    position: sticky;
    top: 90px;
}

/* Lock icon small in sidebar */
.lock-icon {
    margin-left: auto;
    font-size: 0.7rem;
    opacity: 0.5;
}

/* Error alert on homepage scan form */
.scan-error-alert {
    background: #FBEAE8;
    color: var(--status-danger);
    border: 1px solid #FFD8D0;
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.2rem;
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.scan-error-alert i {
    margin-right: 0.5rem;
}

/* Popup center fix */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

/* Responsive report layout */
@media (max-width: 991px) {
    .report-main-col {
        max-width: 100%;
        padding: 0 1rem;
    }
}


/* ============ RAPPORT v6 POLISH ============ */

/* Gap between sidebar and main */
.report-layout .row.g-3 {
    gap: 2rem !important;
}

/* Stat blocks with gradient backgrounds */
.score-stat {
    background: linear-gradient(135deg, #F0F7FD, #fff);
    border: 1px solid #D6E9F8;
}
.score-stat:nth-child(1) { background: linear-gradient(135deg, #FFF5E0, #fff); border-color: #FFE4B3; }
.score-stat:nth-child(2) { background: linear-gradient(135deg, #F0FBF6, #fff); border-color: #C8EDDC; }
.score-stat:nth-child(3) { background: linear-gradient(135deg, #F0F7FD, #fff); border-color: #D6E9F8; }
.score-stat:nth-child(4) { background: linear-gradient(135deg, #FFF0F5, #fff); border-color: #FFD6E7; }

.score-stat-lbl {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    justify-content: center;
}

.score-stat-info {
    font-size: 0.75rem;
    color: var(--brand-primary);
    cursor: help;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.score-stat-info:hover {
    opacity: 1;
}

/* Tooltip */
.stat-tooltip {
    position: fixed;
    background: var(--brand-dark);
    color: #fff;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    max-width: 200px;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(11, 36, 71, 0.3);
    line-height: 1.3;
}

/* Tier badge colored background */
.score-tier {
    padding: 0.5rem 1.2rem;
}
.score-tier-or {
    background: linear-gradient(135deg, #FFF5E0, #FFE8B3);
    color: #B8860B;
    border: 2px solid #F5A623;
}
.score-tier-argent {
    background: linear-gradient(135deg, #F0F3F7, #E4E9F2);
    color: #5C6A85;
    border: 2px solid #9AA5B1;
}
.score-tier-bronze {
    background: linear-gradient(135deg, #F8E8D6, #F0D9BF);
    color: #8B4513;
    border: 2px solid #CD7F32;
}

/* Exit popup — ensure flex centering works */
.exit-popup[style*="display: flex"] .exit-popup-backdrop {
    display: block;
}
.exit-popup[style*="display: flex"] .exit-popup-modal {
    display: block;
}
/* CITORA REPORT v7 — CLEAN CSS */

.page-rapport-detail { background: #F6F8FC; }

/* Layout */
.report-wrapper { padding: 2rem 0 4rem; }
.report-row { gap: 3rem !important; }
.report-sidebar-col { position: relative; }
.sidebar-sticky { position: sticky; top: 100px; background: #fff; border: 1px solid #E4E9F2; border-radius: 12px; padding: 1.2rem; }
.sidebar-head { padding-bottom: 1rem; border-bottom: 1px solid #E4E9F2; margin-bottom: 1rem; }
.sidebar-label { font-size: 0.7rem; font-weight: 700; color: #5C6A85; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.sidebar-progress { height: 4px; background: #E4E9F2; border-radius: 10px; overflow: hidden; margin-bottom: 0.3rem; }
.sidebar-progress-bar { height: 100%; background: linear-gradient(90deg, #066BD6, #00B894); transition: width 1s; }
.sidebar-progress-text { font-size: 0.75rem; color: #5C6A85; }

.sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar-link { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 0.8rem; font-size: 0.85rem; color: #5C6A85; text-decoration: none; border-radius: 6px; transition: all 0.2s; }
.sidebar-link:hover, .sidebar-link.active { background: #E1EEFB; color: #066BD6; }
.sidebar-link.active { font-weight: 600; }
.sidebar-lock i:last-child { margin-left: auto; font-size: 0.7rem; opacity: 0.4; }

.report-main-col { max-width: 850px; }
.report-block { margin-bottom: 1.5rem; scroll-margin-top: 120px; }
.report-card { background: #fff; border: 1px solid #E4E9F2; border-radius: 12px; padding: 2rem; box-shadow: 0 2px 8px rgba(11,36,71,0.04); }

.report-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.5rem; }
.report-meta-url { display: flex; align-items: center; gap: 0.4rem; font-family: 'SF Mono', monospace; font-size: 0.88rem; color: #066BD6; font-weight: 600; }
.report-meta-date { font-size: 0.8rem; color: #5C6A85; }

.report-h1 { font-size: 1.8rem; font-weight: 800; color: #0B2447; margin-bottom: 1.5rem; }
.report-h1 em { font-style: normal; color: #066BD6; }

/* Score hero */
.score-hero { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; align-items: center; padding: 1.5rem 0; border-top: 1px solid #E4E9F2; border-bottom: 1px solid #E4E9F2; margin-bottom: 1rem; }
.score-hero-left { text-align: center; }
.score-hero-label { font-size: 0.7rem; font-weight: 700; color: #5C6A85; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.score-circle-wrap { position: relative; width: 150px; height: 150px; margin: 0 auto 0.8rem; }
.score-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-track { fill: none; stroke: #F0F3F7; stroke-width: 14; }
.score-fill { fill: none; stroke: #066BD6; stroke-width: 14; stroke-linecap: round; transition: stroke-dashoffset 1.5s; }
.score-circle-value { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-num { font-size: 3rem; font-weight: 800; color: #0B2447; line-height: 1; }
.score-max { font-size: 0.9rem; color: #5C6A85; }

.score-tier { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1.2rem; border-radius: 100px; font-weight: 700; font-size: 0.95rem; }
.tier-or { background: linear-gradient(135deg, #FFF5E0, #FFE8B3); color: #B8860B; border: 2px solid #F5A623; }
.tier-argent { background: linear-gradient(135deg, #F0F3F7, #E4E9F2); color: #5C6A85; border: 2px solid #9AA5B1; }
.tier-bronze { background: linear-gradient(135deg, #F8E8D6, #F0D9BF); color: #8B4513; border: 2px solid #CD7F32; }

.score-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.score-stat { background: linear-gradient(135deg, #F0F7FD, #fff); border: 1px solid #D6E9F8; border-radius: 10px; padding: 1rem; text-align: center; position: relative; cursor: help; transition: all 0.2s; }
.score-stat:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(6,107,214,0.15); }
.stat-1 { background: linear-gradient(135deg, #FFF5E0, #fff); border-color: #FFE4B3; }
.stat-2 { background: linear-gradient(135deg, #F0FBF6, #fff); border-color: #C8EDDC; }
.stat-3 { background: linear-gradient(135deg, #F0F7FD, #fff); border-color: #D6E9F8; }
.stat-4 { background: linear-gradient(135deg, #FFF0F5, #fff); border-color: #FFD6E7; }
.stat-val { font-size: 1.8rem; font-weight: 800; color: #0B2447; line-height: 1; margin-bottom: 0.4rem; }
.stat-val small { font-size: 0.9rem; color: #5C6A85; }
.stat-lbl { font-size: 0.78rem; color: #5C6A85; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 0.3rem; }
.stat-lbl i { color: #066BD6; font-size: 0.75rem; opacity: 0.6; }

.info-tooltip { position: fixed; background: #0B2447; color: #fff; padding: 0.6rem 0.9rem; border-radius: 6px; font-size: 0.82rem; max-width: 220px; z-index: 9999; pointer-events: none; box-shadow: 0 4px 16px rgba(11,36,71,0.3); line-height: 1.4; opacity: 0; transition: opacity 0.2s; }
.info-tooltip.show { opacity: 1; }

.score-summary { text-align: center; color: #5C6A85; margin: 0; font-size: 0.95rem; }

/* Email capture */
.email-capture { background: linear-gradient(135deg, #E1EEFB, #fff); border: 2px solid #B3D9F2; border-radius: 12px; padding: 2rem; text-align: center; }
.email-capture-head { margin-bottom: 1.5rem; }
.email-icon { width: 60px; height: 60px; border-radius: 50%; background: #066BD6; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; }
.email-capture h2 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.email-capture p { color: #5C6A85; margin: 0; }
.email-form { display: flex; gap: 0.5rem; max-width: 500px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.email-form .form-control { flex: 1; min-width: 200px; padding: 0.8rem 1.2rem; border: 1px solid #D6E9F8; border-radius: 6px; }
.email-form .form-control:focus { border-color: #066BD6; box-shadow: 0 0 0 3px #E1EEFB; outline: none; }

/* Exit popup */
.exit-popup { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; }
.exit-backdrop { position: absolute; inset: 0; background: rgba(11,36,71,0.7); backdrop-filter: blur(4px); }
.exit-modal { position: relative; background: #fff; border-radius: 16px; padding: 2.5rem 2rem; max-width: 460px; width: calc(100% - 2rem); box-shadow: 0 25px 60px rgba(11,36,71,0.3); text-align: center; animation: slideIn 0.3s; }
@keyframes slideIn { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.exit-close { position: absolute; top: 1rem; right: 1rem; background: transparent; border: none; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #5C6A85; }
.exit-close:hover { background: #F6F8FC; }
.exit-score-circle { width: 70px; height: 70px; margin: 0 auto 1rem; border-radius: 50%; background: #E1EEFB; border: 3px solid #066BD6; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 800; color: #066BD6; }
.exit-modal h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.6rem; }
.exit-modal > p { color: #5C6A85; margin-bottom: 1.3rem; }
.exit-features { list-style: none; padding: 1rem; margin: 0 0 1.5rem; background: #F6F8FC; border-radius: 8px; text-align: left; }
.exit-features li { padding: 0.4rem 0; display: flex; align-items: center; gap: 0.5rem; font-size: 0.93rem; }
.exit-features i { color: #00B894; font-size: 1.1rem; }
.exit-price { margin-bottom: 1.5rem; }
.exit-price .old { font-size: 1.1rem; color: #5C6A85; text-decoration: line-through; margin-right: 0.5rem; }
.exit-price .new { font-size: 2.5rem; font-weight: 800; color: #066BD6; }

@media (max-width: 991px) {
    .report-row { gap: 0 !important; }
    .report-sidebar-col { display: none; }
    .report-main-col { max-width: 100%; padding: 0 1rem; }
    .score-hero { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .report-card { padding: 1.3rem; }
    .score-hero-stats { grid-template-columns: 1fr; }
    .email-form { flex-direction: column; }
    .email-form .form-control, .email-form .btn { width: 100%; }
}


/* ============ GUIDE PAGE ============ */
.guide-content { font-size: 1.05rem; line-height: 1.7; color: var(--brand-ink); }
.guide-content h2 {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--brand-dark);
	margin: 3rem 0 1.2rem;
	border-bottom: 2px solid var(--brand-primary);
	padding-bottom: 0.5rem;
}
.pilier-card h4 {
	font-size: 21px;
	color: #0662c5;
	padding-top: 18px;
}
.guide-toc {
	margin-bottom: 35px;
}
.guide-toc ul {
	padding: 0;
}
.guide-toc li {
	list-style: none;
	display: inline-table;
	padding: 5px 10px;
	background: #eee;
	border-radius: 4px;
	margin-bottom: 3px;
}
.guide-content h2:first-child { margin-top: 0; }
.guide-content h3 { font-size: 1.3rem; font-weight: 700; color: var(--brand-dark); margin: 1.5rem 0 0.8rem; }
.guide-content p { margin-bottom: 1.2rem; }
.guide-content strong { color: var(--brand-dark); font-weight: 600; }

.guide-example { background: linear-gradient(135deg, #E1EEFB, #F0F7FD); border-left: 4px solid var(--brand-primary); padding: 1.5rem; border-radius: var(--radius-md); margin: 2rem 0; }
.guide-example-label { font-size: 0.75rem; font-weight: 700; color: var(--brand-primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.guide-example p { margin-bottom: 0.8rem; font-size: 0.98rem; }
.guide-example p:last-child { margin-bottom: 0; }

.guide-list { margin: 1.5rem 0; padding-left: 1.5rem; }
.guide-list li { margin-bottom: 1rem; padding-left: 0.5rem; }

.pilier-card { background: #fff; border: 1px solid var(--brand-line); border-radius: var(--radius-lg); padding: 1.8rem; margin: 1.5rem 0; position: relative; padding-left: 5rem; box-shadow: var(--shadow-sm); }
.pilier-num { position: absolute; left: 1.5rem; top: 1.8rem; width: 48px; height: 48px; background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark)); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; }
.pilier-card h3 { margin-top: 0; font-size: 1.25rem; }
.pilier-card p { margin-bottom: 0; font-size: 0.98rem; }

.guide-checklist { counter-reset: step; list-style: none; padding: 0; margin: 2rem 0; }
.guide-checklist li { counter-increment: step; position: relative; padding-left: 3rem; margin-bottom: 1.5rem; }
.guide-checklist li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 32px; height: 32px; background: var(--brand-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }

.guide-cta { background: linear-gradient(135deg, var(--brand-dark), var(--brand-primary-dark)); color: #fff; padding: 2.5rem; border-radius: var(--radius-lg); text-align: center; margin-top: 3rem; }
.guide-cta h3 { color: #fff; margin-bottom: 0.8rem; }
.guide-cta p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }

/* Logo image */
.brand-logo-img { height: 30px; width: auto; display: block; }
@media (max-width: 991px) { .brand-logo-img { height: 28px; } }





/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog Hero */
.blog-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #F6F8FC 0%, #E1EEFB 100%);
}

/* Blog Card */
.blog-card {
    background: white;
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(6,107,214,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(6,107,214,0.12);
    border-color: var(--brand-primary);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.78rem;
    color: var(--brand-ink-soft);
    font-weight: 500;
}

.blog-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.blog-card-title a {
    color: var(--brand-ink);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--brand-primary);
}

.blog-card-excerpt {
    color: var(--brand-ink-soft);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    margin-top: auto;
}

.blog-card-link:hover {
    color: var(--brand-primary-dark);
    gap: 0.55rem;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 3rem;
}

/* Article Detail */
.article-detail {
    background: white;
}

.article-header {
    padding: 60px 0 30px;
    background: #F6F8FC;
}

.article-breadcrumb {
    margin-bottom: 1.5rem;
}

.article-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0B2447;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 2rem;
    color: #5C6A85;
    font-size: 0.95rem;
}

.article-featured-image {
    padding: 2rem 0;
    background: #F6F8FC;
}

.article-featured-image img {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.article-body {
    padding: 3rem 0;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2D3748;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0B2447;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0B2447;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-content p {
    margin-bottom: 1.25rem;
}

.article-content ul, .article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content a {
    color: #066BD6;
    text-decoration: underline;
}

.article-content a:hover {
    color: #0B2447;
}

.article-content code {
    background: #F6F8FC;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: #E74C3C;
}

.article-content pre {
    background: #0B2447;
    color: #E1EEFB;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* Article Share */
.article-share {
    border-top: 2px solid #E4E9F2;
    border-bottom: 2px solid #E4E9F2;
    padding: 2rem 0;
    margin: 3rem 0;
}

.article-share h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Article CTA */
.article-cta {
    margin-top: 3rem;
}

.cta-box {
    background: linear-gradient(135deg, #0B2447 0%, #066BD6 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.cta-box h3 {
    color: white;
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 1.75rem;
    }
    
    .article-content {
        font-size: 1rem;
    }
}
/* Fix blog featured image alignment */
.article-featured-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.article-content img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

/* Fix blog featured image - match text width */
.article-featured-image {
    padding: 2rem 0;
    background: #F6F8FC;
}

.article-featured-image img {
    display: block;
    margin: 0 auto;
    max-width: 850px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.article-content img {
    display: block;
    margin: 1.5rem auto;
    max-width: 100%;
    border-radius: 8px;
}

/* ==========================================================
   PAID REPORT STYLES
   ========================================================== */

.report-header { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    color: white; 
    padding: 2rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.report-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.score-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.2);
}

.score-value { 
    font-size: 3rem; 
    font-weight: 800; 
    line-height: 1; 
}

.score-label { 
    opacity: 0.9; 
    font-size: 0.9rem; 
    margin-top: 0.5rem; 
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 1rem; 
    margin: -2rem 0 2rem;
    position: relative;
    z-index: 10;
}

.stat-box {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
}

.stat-box-value { 
    font-size: 2rem; 
    font-weight: 700; 
    margin-bottom: 0.25rem; 
}

.stat-box-label { 
    color: #6c757d; 
    font-size: 0.875rem; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
}

.report-section { 
    background: white; 
    border-radius: 12px; 
    padding: 1.5rem; 
    margin-bottom: 1.5rem; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); 
}

.report-section-title { 
    font-size: 1.25rem; 
    font-weight: 700; 
    margin-bottom: 1rem; 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
}

.report-section-title i { 
    width: 32px; 
    height: 32px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 8px; 
    font-size: 1rem; 
}

.metric { 
    margin-bottom: 1.25rem; 
}

.metric:last-child { 
    margin-bottom: 0; 
}

.metric-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 0.5rem; 
}

.metric-label { 
    font-weight: 600; 
    font-size: 0.95rem; 
}

.metric-score { 
    font-weight: 700; 
    color: #0066cc; 
}

.metric-desc { 
    font-size: 0.875rem; 
    color: #6c757d; 
    margin-top: 0.25rem; 
}

.rec-item {
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: 0 8px 8px 0;
}

.rec-item:last-child { 
    margin-bottom: 0; 
}

.rec-title { 
    font-weight: 600; 
    margin-bottom: 0.5rem; 
    display: flex; 
    align-items: start; 
    gap: 0.5rem; 
}

.rec-priority { 
    background: #0066cc; 
    color: white; 
    width: 24px; 
    height: 24px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 0.75rem; 
    font-weight: 700;
    flex-shrink: 0;
}

.rec-desc { 
    font-size: 0.9rem; 
    color: #495057; 
}

.rec-tags { 
    display: flex; 
    gap: 0.5rem; 
    margin-top: 0.75rem; 
    flex-wrap: wrap; 
}

.rec-tag { 
    font-size: 0.75rem; 
    padding: 0.25rem 0.75rem; 
    border-radius: 12px; 
    font-weight: 500;
}

.report-timeline { 
    position: relative; 
    padding-left: 2.5rem; 
}

.report-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #dee2e6;
}

.timeline-item { 
    position: relative; 
    margin-bottom: 1.5rem; 
}

.timeline-item:last-child { 
    margin-bottom: 0; 
}

.timeline-dot {
    position: absolute;
    left: -2.5rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 1;
}

.timeline-content h6 { 
    font-size: 1rem; 
    font-weight: 600; 
    margin-bottom: 0.5rem; 
}

.timeline-content ul { 
    margin: 0; 
    padding-left: 1.25rem; 
    font-size: 0.9rem; 
    color: #495057; 
}

.report-footer {
    background: #212529;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
    text-align: center;
}

/* PRINT STYLES FOR REPORTS */
@media print {
    .report-header { 
        background: white !important; 
        color: #000 !important; 
        border-bottom: 2px solid #dee2e6; 
    }
    .score-badge { 
        background: #f8f9fa !important; 
        border-color: #dee2e6 !important; 
        color: #000 !important; 
    }
    .report-section { 
        page-break-inside: avoid; 
        box-shadow: none; 
        border: 1px solid #dee2e6; 
    }
    .report-footer, 
    .no-print { 
        display: none !important; 
    }
}

/* RESPONSIVE FOR REPORTS */
@media (max-width: 768px) {
    .stats-grid { 
        grid-template-columns: 1fr 1fr; 
    }
    .score-value { 
        font-size: 2.5rem; 
    }
}

/* ==========================================================
   UTILITY CLASSES FOR CONVERSION-OPTIMIZED PAGES
   Add these to the end of main.css
   ========================================================== */

/* Alert boxes with gradients */
.alert-urgency {
	background: linear-gradient(135deg, #e1eefb 0%, #d4ecf9 100%);
	border-left: 5px solid #066bd6;
	padding: 1.5rem 2rem;
	border-radius: 12px;
	margin: 2rem auto 0;
	max-width: 750px;
	text-align: left;
}

.alert-urgency p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    color: #1a2c3f;
}

.alert-urgency .highlight-blue {
    color: #066BD6;
}

/* Info boxes */
.info-box-blue {
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.info-box-blue-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.info-box-blue-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #1e40af;
}

.info-box-green {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.info-box-yellow {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    text-align: center;
}

.info-box-warning {
    background: #fef9e6;
    border-left: 5px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.info-box-warning-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #92400e;
}

.info-box-warning p {
    margin-bottom: 0.8rem;
    color: #78350f;
}

/* Step cards enhancements */
.step-text-small {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    opacity: 0.95;
}

.step-text-smaller {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    opacity: 0.85;
}

/* FAQ inline items */
.faq-item-inline {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #3b82f6;
}

.faq-question-inline {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1a2c3f;
}

.faq-answer-inline {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

/* Social proof boxes */
.social-proof-box {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2.5rem;
    text-align: center;
}

.social-proof-box p {
    margin: 0;
    font-size: 0.95rem;
    color: #1e40af;
}

.social-proof-white {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.social-proof-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #066BD6;
}

.social-proof-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* No-brainer box for pricing */
.no-brainer-box {
    background: #eff6ff;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9rem;
    text-align: left;
}

.no-brainer-box div {
    margin-bottom: 0.4rem;
}

.no-brainer-box div:last-child {
    margin-bottom: 0;
}

/* Aha moment boxes */
.aha-moment-box {
    background: white;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
}

.aha-moment-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e40af;
}

.aha-moment-box ul {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.92rem;
    color: #1e3a8a;
    line-height: 1.9;
}

/* CTA boxes */
.cta-box-blue {
    background: #eff6ff;
    border: 2px solid #3b82f6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2.5rem 0;
    text-align: center;
}

.cta-box-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1e40af;
}

.cta-box-text {
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.cta-box-green {
    background: #f0fdf4;
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2.5rem 0;
    text-align: center;
}

.cta-box-green .cta-box-title {
    color: #065f46;
}

.cta-box-green .cta-box-text {
    color: #047857;
}

/* Quick wins box */
.quick-wins-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0 0;
    color: white;
}

.quick-wins-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: white;
}

.quick-wins-grid {
	display: grid;
	gap: 0.8rem;
	font-size: 1.1rem;
	line-height: 1.7;
}

.quick-wins-note {
    margin: 1.5rem 0 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 0.9rem;
    opacity: 0.95;
}

/* Urgency text */
.urgency-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
}

/* Section backgrounds */
.section-bg-light {
    background: #fafbfc;
}

.section-bg-lighter {
    background: #f9fafb;
}

/* Contact footer */
.contact-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
}

.contact-footer p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* Final CTA enhancements */
.final-cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

/* Pricing period update */
.pricing-price .price-period {
    font-size: 0.9rem;
    opacity:1;
}

/* Error icon */
.error-icon {
    margin-bottom: 1.5rem;
}

.error-icon i {
    font-size: 5rem;
    color: #ffc107;
}

/* Utility margins */
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }

/* Display utilities */
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }

/* ==========================================================
   FAQ PAGE STYLES
   ========================================================== */

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2c3f;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #3b82f6;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.2s;
    cursor: pointer;
}

.faq-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2c3f;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #3b82f6;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    color: #4b5563;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    margin-top: 1rem;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: #1a2c3f;
}

.faq-cta {
    background: #eff6ff;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 600;
}

.faq-cta a {
    color: #066BD6;
    text-decoration: none;
}

.faq-cta a:hover {
    text-decoration: underline;
}

.faq-final-cta {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
}

.faq-final-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.faq-final-cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.faq-contact {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.faq-contact a {
    color: white;
    text-decoration: underline;
}



/* ==========================================================
   OFFER TEASER — After score hero on free report
   Paste at the end of main.css
   ========================================================== */

.offer-teaser {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, #0B2447 0%, #066BD6 100%);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    color: white;
}

.offer-teaser-badge {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    background: rgba(255,255,255,0.15);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.offer-teaser-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.2rem;
    line-height: 1.35;
}

.offer-teaser-title em {
    color: #4A9DFF;
    font-style: normal;
    border-bottom: none;
}

.offer-teaser-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-teaser-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.offer-teaser-list i {
    color: #4A9DFF;
    font-size: 1rem;
    flex-shrink: 0;
}

.offer-teaser-right {
    text-align: center;
    flex-shrink: 0;
    min-width: 200px;
}

.offer-teaser-price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.3rem;
}

.offer-teaser-period {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.2rem;
}

.offer-teaser-btn {
    background: white;
    color: var(--brand-primary);
    font-weight: 700;
    width: 100%;
    margin-bottom: 0.8rem;
}

.offer-teaser-btn:hover {
    background: var(--brand-paper-alt);
    color: var(--brand-primary-dark);
    transform: translateY(-1px);
}

.offer-teaser-guarantee {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.offer-teaser-guarantee i {
    margin-right: 0.3rem;
}

@media (max-width: 767px) {
    .offer-teaser {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    .offer-teaser-right {
        min-width: unset;
        width: 100%;
    }
    .offer-teaser-price {
        font-size: 2.5rem;
    }
}


/* ==========================================================
   HERO STATS 2026 - CARD DESIGN
   ========================================================== */

.hero-stats-2026 {
    background: #f0f4f8;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    margin:4rem auto;
    max-width: 950px;
}

.hero-stats-2026-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.hero-stats-2026-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.hero-stat-2026-card {
	background: white;
	border-radius: 20px;
	padding: 1.5rem 2rem;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
}

.hero-stat-2026-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.12);
}

.hero-stat-2026-icon {
	width: 58px;
	height: 58px;
	margin: 0 auto 1.5rem;
	background: #3b82f6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-stat-2026-icon i {
    font-size: 1.55rem;
    color: white;
}

.hero-stat-2026-text {
    font-size: 1rem;
    color: #2d3748;
    line-height: normal;
    margin: 0;
    font-weight: 400;
}

.hero-stats-2026-footer {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    padding-top: 1rem;
}

@media (max-width: 992px) {
  
}





/* ==========================================================
   HERO STATS BLOCK (Landing Page 2026 Update)
   ========================================================== */






.hero-stat p {
    font-size: 0.95rem;
    color: #1e3a8a;
    line-height: 1.6;
    margin: 0;
}


@media (max-width: 768px) {

.pricing-roi-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 0.8rem;
}

.pricing-roi-text {
    font-size: 0.95rem;
    color: #78350f;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pricing-roi-cta {
    font-size: 1rem;
    font-weight: 600;
    color: #92400e;
    margin: 0;
}
}

/* ==========================================================
   HERO PRICING LINE (under scan examples)
   ========================================================== */

.hero-pricing-line {
    margin: 4rem auto 0;
    text-align: center;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 640px;
}

.hero-pricing-line strong {
    color: #0f172a;
}

/* ==========================================================
   SCAN COUNTER (live "X+ sites analysés cette semaine")
   ========================================================== */

.scan-counter {
    margin: 0.5rem auto 0;
    text-align: center;
    color: #059669;
    font-size: 0.85rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.scan-counter i {
    font-size: 0.95rem;
}

.scan-counter strong {
    color: #047857;
    font-weight: 700;
}

/* ==========================================================
   SCAN EXAMPLES (auto-fill buttons under hero form)
   ========================================================== */

.scan-examples {
    margin: 0.85rem 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.scan-examples-label {
    color: #64748b;
    font-size: 0.85rem;
    margin-right: 0.25rem;
}

.scan-example-btn {
    background: #fff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-family: 'Monaco', 'Consolas', 'Courier New', monospace;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.scan-example-btn:hover,
.scan-example-btn:focus {
    background: #eff6ff;
    border-color: var(--brand-accent, #2563eb);
    color: var(--brand-accent, #2563eb);
    outline: none;
}

@media (max-width: 480px) {
    .scan-examples {
        font-size: 0.78rem;
        gap: 0.35rem;
    }
    .scan-example-btn {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}

/* ==========================================================
   GUIDE SOURCES FOOTNOTE
   ========================================================== */

.guide-sources {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem;
    margin: 3rem 0 2rem;
    border-radius: 8px;
}

.guide-sources p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.guide-highlight {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.guide-highlight p {
    margin-bottom: 0.5rem;
}

.guide-highlight p:last-child {
    margin-bottom: 0;
}
/* ==========================================================
   HERO STATS MODERN (Landing Page 2026 - Card Design)
   ========================================================== */



.hero-stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}







@media (max-width: 768px) {
    .hero-stats-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
/* ==========================================================
   HERO STATS 2026 - EXACT MATCH TO DESIGN
   ========================================================== */

.hero-stats-2026 {
    background: #f0f4f8;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    margin: 3rem auto;
    max-width: 950px;
}

.hero-stats-2026-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.hero-stats-2026-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.hero-stat-2026-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.hero-stat-2026-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.12);
}

.hero-stat-2026-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stat-2026-icon i {
    font-size: 2.25rem;
    color: white;
}

.hero-stat-2026-text {
    font-size: 1rem;
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.hero-stats-2026-footer {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    padding-top: 1rem;
}

@media (max-width: 992px) {
    .hero-stats-2026-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-stats-2026 {
        padding: 2.5rem 2rem;
    }
    
    .hero-stats-2026-title {
        font-size: 1.5rem;
    }
    
    .hero-stat-2026-icon {
        width: 70px;
        height: 70px;
    }
    
    .hero-stat-2026-icon i {
        font-size: 2rem;
    }
	  .hero-stats-2026-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-stats-2026 {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }
}

/* ==========================================================
   PREMIUM PLUS PRICING CARD
   ========================================================== */

.pricing-card-plus {
    border: 2px solid #F59E0B;
    background: linear-gradient(180deg, #FFFBEB 0%, #fff 40%);
    position: relative;
}

.pricing-badge-plus {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
}

.no-brainer-box-plus {
    background: #FEF3C7;
    border-left: 3px solid #F59E0B;
}

.no-brainer-box-plus i {
    color: #D97706;
    margin-right: 0.4rem;
}

.btn-plus {
    display: inline-block;
    background: linear-gradient(135deg, #F59E0B, #D97706) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 700;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.5rem;
}

.btn-plus:hover,
.btn-plus:focus,
.btn-plus:active {
    background: linear-gradient(135deg, #D97706, #B45309) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

.pricing-card-plus .pricing-features li i.bi-star-fill {
    font-size: 0.75rem;
    color: #F59E0B;
}

.pricing-card-plus .pricing-name {
    color: #92400E;
}

.pricing-card-plus .price-value {
    color: #D97706;
}

/* ==========================================================
   UPSELL COMPARISON TABLE
   ========================================================== */

.upsell-header { text-align:center; margin-bottom:2rem; }
.upsell-main-title { font-size:1.5rem; font-weight:800; color:#0B2447; margin-bottom:0.5rem; letter-spacing:-0.02em; }
.upsell-main-sub { font-size:0.95rem; color:#5C6A85; margin:0; }

.upsell-table-wrap {
    overflow-x:auto;
    margin-bottom:1.5rem;
    border-radius:16px;
    border:1px solid #E4E9F2;
}

.upsell-table {
    width:100%;
    border-collapse:collapse;
    font-size:0.9rem;
    background:white;
}

.upsell-table thead th {
    padding:1.5rem 1.25rem 1.25rem;
    text-align:center;
    background:#F6F8FC;
    border-bottom:2px solid #E4E9F2;
    vertical-align:top;
}

.upsell-table-feature { text-align:left !important; width:44%; }
.upsell-table-plan { width:28%; }

.upsell-table-plan-plus {
    background:linear-gradient(180deg,#FFFBEB 0%,#F6F8FC 100%) !important;
    border-left:2px solid #F59E0B !important;
}

.upsell-plan-badge {
    display:inline-block;
    background:linear-gradient(135deg,#F59E0B,#D97706);
    color:white;
    font-size:0.65rem;
    font-weight:700;
    letter-spacing:0.08em;
    text-transform:uppercase;
    padding:0.2rem 0.6rem;
    border-radius:100px;
    margin-bottom:0.5rem;
}

.upsell-plan-name { font-size:0.95rem; font-weight:700; color:#0B2447; margin-bottom:0.25rem; }
.upsell-plan-price { font-size:1.75rem; font-weight:800; color:#066BD6; letter-spacing:-0.03em; line-height:1; margin-bottom:0.2rem; }
.upsell-plan-price-plus { color:#D97706; }
.upsell-plan-period { font-size:0.72rem; color:#5C6A85; }

.upsell-table tbody td {
    padding:0.85rem 1.25rem;
    border-bottom:1px solid #E4E9F2;
    color:#1A2138;
}

.upsell-table tbody td:nth-child(2),
.upsell-table tbody td:nth-child(3) { text-align:center; font-size:1.1rem; }

.upsell-table tbody td:nth-child(3) {
    border-left:2px solid #F59E0B;
    background:#FFFDF5;
}

.upsell-table tbody tr:last-child td { border-bottom:none; }
.upsell-plus-check { color:#D97706 !important; }

.upsell-table tfoot td {
    padding:1.25rem;
    background:white;
    border-top:2px solid #E4E9F2;
}

.upsell-table tfoot td:nth-child(3) {
    border-left:2px solid #F59E0B;
    background:#FFFDF5;
}

.upsell-btn-plus {
    background:linear-gradient(135deg,#F59E0B,#D97706) !important;
    color:#ffffff !important;
    border:none !important;
    font-weight:700;
    padding:0.5rem 1rem;
    border-radius:8px;
    cursor:pointer;
    transition:all 0.2s;
}

.upsell-btn-plus:hover {
    background:linear-gradient(135deg,#D97706,#B45309) !important;
    color:#ffffff !important;
    transform:translateY(-1px);
}

.upsell-expert-line {
    text-align:center;
    font-size:0.875rem;
    color:#5C6A85;
    font-style:italic;
    margin-bottom:0.75rem;
}

.upsell-guarantee { text-align:center; font-size:0.8rem; color:#5C6A85; margin:0; }
.upsell-guarantee i { color:#22C55E; margin-right:0.3rem; }

@media (max-width:575px) {
    .upsell-plan-price { font-size:1.4rem; }
    .upsell-table thead th { padding:1rem 0.75rem; }
    .upsell-table tbody td { padding:0.75rem 0.6rem; font-size:0.8rem; }
    .upsell-table tfoot td { padding:0.75rem; }
}

/* ==========================================================
   PRICE ANCHORING
   ========================================================== */
.offer-teaser-card-price-wrap { display:flex; align-items:baseline; gap:0.5rem; margin-bottom:0.2rem; }
.offer-teaser-card-price-old,
.upsell-price-old {
    font-size:1rem;
    color:rgba(255,255,255,0.45);
    text-decoration:line-through;
    font-weight:500;
}
.upsell-price-old { color:#9CA3AF; }

/* ==========================================================
   OFFER TEASER DUAL
   ========================================================== */
.offer-teaser-dual { background:linear-gradient(135deg,#0B2447 0%,#066BD6 100%); border-radius:16px; padding:2rem; color:white; }
.offer-teaser-dual-header { text-align:center; margin-bottom:1.5rem; }
.offer-teaser-dual-title { font-size:1.3rem; font-weight:800; color:white; margin-bottom:0.4rem; }
.offer-teaser-dual-sub { font-size:0.9rem; color:rgba(255,255,255,0.7); margin:0; }
.offer-teaser-dual-cards { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
.offer-teaser-card { background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15); border-radius:12px; padding:1.5rem; }
.offer-teaser-card-plus { background:rgba(245,158,11,0.12); border-color:#F59E0B; }
.offer-teaser-card-badge { display:inline-block; background:rgba(255,255,255,0.2); color:white; font-size:0.65rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; padding:0.2rem 0.6rem; border-radius:100px; margin-bottom:0.6rem; }
.offer-teaser-card-badge-plus { background:linear-gradient(135deg,#F59E0B,#D97706) !important; }
.offer-teaser-card-name { font-size:1rem; font-weight:700; color:white; margin-bottom:0.4rem; }
.offer-teaser-card-price { font-size:2rem; font-weight:900; color:white; letter-spacing:-0.03em; line-height:1; }
.offer-teaser-card-price-plus { color:#FCD34D !important; }
.offer-teaser-card-period { font-size:0.72rem; color:rgba(255,255,255,0.6); margin-bottom:1rem; }
.offer-teaser-card-features { list-style:none; padding:0; margin:0 0 1.25rem; }
.offer-teaser-card-features li { font-size:0.82rem; color:rgba(255,255,255,0.85); padding:0.3rem 0; display:flex; align-items:center; gap:0.5rem; }
.offer-teaser-card-features i { color:#60A5FA; font-size:0.8rem; flex-shrink:0; }
@media (max-width:640px) { .offer-teaser-dual-cards { grid-template-columns:1fr; } }

/* ==========================================================
   UPSELL COMPARISON TABLE
   ========================================================== */
.upsell-header { text-align:center; margin-bottom:2rem; }
.upsell-main-title { font-size:1.5rem; font-weight:800; color:#0B2447; margin-bottom:0.5rem; letter-spacing:-0.02em; }
.upsell-main-sub { font-size:0.95rem; color:#5C6A85; margin:0; }
.upsell-table-wrap { overflow-x:auto; margin-bottom:1.5rem; border-radius:16px; border:1px solid #E4E9F2; }
.upsell-table { width:100%; border-collapse:collapse; font-size:0.9rem; background:white; }
.upsell-table thead th { padding:1.5rem 1.25rem 1.25rem; text-align:center; background:#F6F8FC; border-bottom:2px solid #E4E9F2; vertical-align:top; }
.upsell-table-feature { text-align:left !important; width:44%; }
.upsell-table-plan { width:28%; }
.upsell-table-plan-plus { background:linear-gradient(180deg,#FFFBEB 0%,#F6F8FC 100%) !important; border-left:2px solid #F59E0B !important; }
.upsell-plan-badge { display:inline-block; background:linear-gradient(135deg,#F59E0B,#D97706); color:white; font-size:0.65rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; padding:0.2rem 0.6rem; border-radius:100px; margin-bottom:0.5rem; }
.upsell-plan-name { font-size:0.95rem; font-weight:700; color:#0B2447; margin-bottom:0.25rem; }
.upsell-plan-price { font-size:1.75rem; font-weight:800; color:#066BD6; letter-spacing:-0.03em; line-height:1; margin-bottom:0.2rem; }
.upsell-plan-price-plus { color:#D97706 !important; }
.upsell-plan-period { font-size:0.72rem; color:#5C6A85; }
.upsell-table tbody td { padding:0.85rem 1.25rem; border-bottom:1px solid #E4E9F2; color:#1A2138; }
.upsell-table tbody td:nth-child(2), .upsell-table tbody td:nth-child(3) { text-align:center; font-size:1.1rem; }
.upsell-table tbody td:nth-child(3) { border-left:2px solid #F59E0B; background:#FFFDF5; }
.upsell-table tbody tr:last-child td { border-bottom:none; }
.upsell-plus-check { color:#D97706 !important; }
.upsell-table tfoot td { padding:1.25rem; background:white; border-top:2px solid #E4E9F2; }
.upsell-table tfoot td:nth-child(3) { border-left:2px solid #F59E0B; background:#FFFDF5; }
.upsell-btn-plus { background:linear-gradient(135deg,#F59E0B,#D97706) !important; color:#ffffff !important; border:none !important; font-weight:700; padding:0.5rem 1rem; border-radius:8px; cursor:pointer; transition:all 0.2s; }
.upsell-btn-plus:hover { background:linear-gradient(135deg,#D97706,#B45309) !important; color:#ffffff !important; }
.upsell-expert-line { text-align:center; font-size:0.875rem; color:#5C6A85; font-style:italic; margin-bottom:0.75rem; }
.upsell-guarantee { text-align:center; font-size:0.8rem; color:#5C6A85; margin:0; }
.upsell-guarantee i { color:#22C55E; margin-right:0.3rem; }
@media (max-width:575px) { .upsell-plan-price { font-size:1.4rem; } .upsell-table thead th { padding:1rem 0.75rem; } .upsell-table tbody td { padding:0.75rem 0.6rem; font-size:0.8rem; } .upsell-table tfoot td { padding:0.75rem; } }

/* ==========================================================
   PLUS CARD (tarifs page)
   ========================================================== */
.pricing-card-plus { border:2px solid #F59E0B; background:linear-gradient(180deg,#FFFBEB 0%,#fff 40%); position:relative; }
.pricing-badge-plus { background:linear-gradient(135deg,#F59E0B,#D97706); color:white; }
.no-brainer-box-plus { background:#FEF3C7; border-left:3px solid #F59E0B; }
.no-brainer-box-plus i { color:#D97706; margin-right:0.4rem; }
.btn-plus { display:inline-block; background:linear-gradient(135deg,#F59E0B,#D95506) !important; color:#ffffff !important; border:none !important; font-weight:700; transition:all 0.2s; text-align:center; text-decoration:none !important; cursor:pointer; border-radius:8px; padding:0.75rem 1.5rem;  position:relative; }
.btn-plus:hover, .btn-plus:focus, .btn-plus:active { background:linear-gradient(135deg,#D99006,#E15D0D) !important; color:#ffffff !important; transform:translateY(-1px); box-shadow:none;}
.pricing-card-plus .pricing-features li i.bi-star-fill { font-size:0.75rem; color:#F59E0B; }
.pricing-card-plus .pricing-name { color:#92400E; }
.pricing-card-plus .price-value { color:#D97706; }

/* ==========================================================
   PRICE ANCHOR (crossed-out price)
   ========================================================== */
.price-anchor {
    display: block;
    font-size: 1rem;
    color: #9CA3AF;
    text-decoration: line-through;
    font-weight: 500;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.price-main-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ==========================================================
   COMPARISON TABLE (tarifs page)
   ========================================================== */
.compare-wrap {
    border-radius: 16px;
    border: 1px solid #E4E9F2;
    overflow: hidden;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: white;
}

.compare-table thead th {
    padding: 1.5rem 1rem 1.25rem;
    background: #F6F8FC;
    border-bottom: 2px solid #E4E9F2;
    vertical-align: bottom;
}

.compare-feature-col { width: 40%; text-align: left; }

.compare-col-featured {
    background: #EFF6FF !important;
    border-left: 2px solid #066BD6 !important;
    border-right: 2px solid #066BD6 !important;
}

.compare-col-plus {
    background: #FFFBEB !important;
    border-left: 2px solid #F59E0B !important;
}

.compare-plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-bottom: 0.4rem;
}

.compare-plan-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0B2447;
    margin-bottom: 0.25rem;
}

.compare-plan-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #066BD6;
    letter-spacing: -0.02em;
}

.compare-plan-price-plus { color: #D97706; }

.compare-table tbody td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #E4E9F2;
    color: #1A2138;
}

.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-yes     { color: #066BD6; font-size: 1.1rem; }
.compare-yes-plus { color: #D97706; font-size: 1.1rem; }
.compare-no      { color: #D1D5DB; font-size: 1.1rem; }
.compare-text    { font-size: 0.8rem; color: #5C6A85; }

.compare-table tfoot td {
    padding: 1rem;
    background: white;
    border-top: 2px solid #E4E9F2;
}

.compare-btn-plus {
    background: linear-gradient(135deg, #F59E0B, #D97706) !important;
    color: #fff !important;
    border: none !important;
    font-weight: 700;
}

@media (max-width: 767px) {
    .compare-plan-price { font-size: 1.1rem; }
    .compare-table tbody td,
    .compare-table thead th { padding: 0.6rem 0.5rem; font-size: 0.8rem; }
}

/* ============================================================

/* ============================================================
   A-PROPOS PAGE
   ============================================================ */

/* Hero */
.ap-hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #03142e 0%, #0a2a5e 50%, #066BD6 100%);
}
.ap-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(6,107,214,0.4) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(3,20,46,0.6) 0%, transparent 70%);
    pointer-events: none;
}
.ap-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.25rem;
}
.ap-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.ap-hero-title em {
    font-style: normal;
    color: #60b4ff;
}
.ap-hero-lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

/* Stats strip */
.ap-stats {
    background: var(--brand-ink);
    padding: 0;
}
.ap-stat {
    padding: 1.75rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.ap-stat:last-child { border-right: none; }
.ap-stat-value {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #60b4ff;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.ap-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

/* Section typography */
.ap-section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--brand-ink);
    line-height: 1.25;
    margin-bottom: 1rem;
}
.ap-body {
    font-size: 1rem;
    color: var(--brand-ink-soft);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.ap-eyebrow:not(.ap-hero .ap-eyebrow) {
    color: var(--brand-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.6rem;
}

/* Callout box */
.ap-callout {
    background: var(--brand-primary-soft);
    border-left: 3px solid var(--brand-primary);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    font-size: 0.92rem;
    color: var(--brand-ink);
    line-height: 1.6;
    margin-top: 1.5rem;
}
.ap-callout i {
    color: #E67E22;
    margin-right: 0.5rem;
}

/* Mission card */
.ap-mission-card {
    background: #fff;
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    box-shadow: 0 4px 24px rgba(6,107,214,0.07);
}
.ap-mission-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 0.85rem;
}
.ap-mission-label i { margin-right: 0.4rem; }
.ap-mission-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--brand-ink);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.ap-mission-card > p {
    font-size: 0.95rem;
    color: var(--brand-ink-soft);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.ap-mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ap-mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--brand-ink);
    padding: 0.45rem 0;
    border-top: 1px solid var(--brand-paper-alt, #f6f8fc);
}
.ap-mission-list li:first-child { border-top: none; }
.ap-mission-list li i {
    color: var(--brand-primary);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Differentiator section */
.ap-diff-section { background: var(--brand-paper-alt); }
.ap-diff-card {
    background: #fff;
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    height: 100%;
}
.ap-diff-card--yes {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px var(--brand-primary-soft, #e1eefb);
}
.ap-diff-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.ap-diff-icon--no { background: #fef2f2; color: #ef4444; }
.ap-diff-icon--yes { background: var(--brand-primary-soft); color: var(--brand-primary); }
.ap-diff-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-ink);
    margin-bottom: 1rem;
}
.ap-diff-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ap-diff-card ul li {
    font-size: 0.9rem;
    color: var(--brand-ink-soft);
    padding: 0.35rem 0;
    border-top: 1px solid var(--brand-paper-alt);
}
.ap-diff-card--yes ul li { color: var(--brand-ink); }

/* Trust cards */
.ap-trust-card {
    background: #fff;
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    height: 100%;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}
.ap-trust-card:hover {
    box-shadow: 0 12px 32px rgba(6,107,214,0.10);
    transform: translateY(-4px);
}
.ap-trust-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--brand-primary-lighter, #f0f7fd);
    line-height: 1;
    margin-bottom: 0.75rem;
    font-variant-numeric: tabular-nums;
}
.ap-trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.ap-trust-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-ink);
    margin-bottom: 0.6rem;
}
.ap-trust-card p {
    font-size: 0.9rem;
    color: var(--brand-ink-soft);
    line-height: 1.65;
    margin: 0;
}

/* Method section */
.ap-method-section { background: var(--brand-paper-alt); }
.ap-method-card {
    background: #fff;
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: 14px;
    padding: 2.25rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.ap-method-card--plus {
    border-color: #F59E0B;
    background: linear-gradient(160deg, #fffbeb 0%, #fff 50%);
}
.ap-method-plan {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 1.25rem;
    align-self: flex-start;
}
.ap-method-plan--plus {
    background: #FEF3C7;
    color: #92400E;
}
.ap-method-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-ink);
    margin-bottom: 0.85rem;
}
.ap-method-title i {
    margin-right: 0.4rem;
    color: var(--brand-primary);
}
.ap-method-card--plus .ap-method-title i { color: #D97706; }
.ap-method-card p {
    font-size: 0.92rem;
    color: var(--brand-ink-soft);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
}
.ap-method-footer {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-primary);
    border-top: 1px solid var(--brand-paper-alt);
    padding-top: 1rem;
    margin-top: auto;
}
.ap-method-footer i { margin-right: 0.35rem; }
.ap-method-footer--plus { color: #D97706; }

/* ============================================================
   COMMENT CA MARCHE PAGE
   ============================================================ */

/* Step cards */
.ccm-step-card {
    background: #fff;
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}
.ccm-step-card:hover {
    box-shadow: 0 8px 28px rgba(6,107,214,0.09);
    transform: translateY(-3px);
}
.ccm-step-card--aeo {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px var(--brand-primary-soft);
}
.ccm-step-card--plus {
    border-color: #F59E0B;
    background: linear-gradient(160deg, #fffbeb 0%, #fff 60%);
    box-shadow: 0 0 0 3px #FEF3C7;
}
.ccm-step-badge {
    position: absolute;
    top: -12px;
    right: 1rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    background: var(--brand-primary);
    color: #fff;
    border-radius: 20px;
    padding: 0.2rem 0.7rem;
}
.ccm-step-badge--plus {
    background: #F59E0B;
    color: #fff;
}
.ccm-step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--brand-primary-lighter, #f0f7fd);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.ccm-step-card--plus .ccm-step-num { color: #FEF3C7; }
.ccm-step-icon {
    font-size: 1.5rem;
    color: var(--brand-primary);
    margin-bottom: 0.85rem;
}
.ccm-step-icon--aeo { color: var(--brand-primary); }
.ccm-step-icon--plus { color: #D97706; display: flex; align-items: center; gap: 0.25rem; }
.ccm-plus-sep { font-size: 0.75rem; }
.ccm-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-ink);
    margin-bottom: 0.75rem;
}
.ccm-step-text {
    font-size: 0.88rem;
    color: var(--brand-ink-soft);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1rem;
}
.ccm-step-footer {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-primary);
    border-top: 1px solid var(--brand-paper-alt);
    padding-top: 0.85rem;
    margin-top: auto;
}
.ccm-step-footer i { margin-right: 0.3rem; }
.ccm-step-footer--plus { color: #D97706; }

/* Compare strip */
.ccm-compare-strip {
    background: var(--brand-paper-alt);
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.ccm-compare-side {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}
.ccm-compare-side--plus { justify-content: flex-end; text-align: right; }
.ccm-compare-icon {
    font-size: 2rem;
    color: var(--brand-primary);
}
.ccm-compare-icons-duo {
    font-size: 1.5rem;
    color: #D97706;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.ccm-compare-icons-duo .bi-plus-lg { font-size: 0.9rem; }
.ccm-compare-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-ink);
}
.ccm-compare-desc {
    font-size: 0.78rem;
    color: var(--brand-ink-soft);
}
.ccm-compare-vs {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--brand-ink-soft);
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 0.25rem 0.65rem;
    flex-shrink: 0;
}

/* Expert box */
.ccm-expert-box {
    background: #fff;
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    box-shadow: 0 4px 20px rgba(6,107,214,0.06);
}
.ccm-expert-quote {
    font-size: 1.05rem;
    color: var(--brand-ink);
    line-height: 1.7;
    border-left: 3px solid var(--brand-primary);
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}
.ccm-expert-quote i {
    color: var(--brand-primary);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}
.ccm-expert-body {
    font-size: 0.95rem;
    color: var(--brand-ink-soft);
    line-height: 1.7;
    margin-bottom: 0;
}
.ccm-expert-pillar {
    background: var(--brand-primary-soft);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-ink);
    height: 100%;
}
.ccm-expert-pillar i {
    color: var(--brand-primary);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================================
   TARIFS PAGE — ADDITIONS
   ============================================================ */
.pricing-roi-box-plus {
    background: #FEF3C7;
    border-left: 3px solid #F59E0B;
    border-radius: 0 8px 8px 0;
    padding: 0.85rem 1rem;
}
.pricing-roi-box-plus .pricing-roi-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #92400E;
    margin-bottom: 0.3rem;
}
.pricing-roi-box-plus .pricing-roi-text {
    font-size: 0.82rem;
    color: #78350F;
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   GUIDE PAGE — ADDITIONS
   ============================================================ */

/* Alert visibility box */
.guide-alert-box {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    border-left: 4px solid #F97316;
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--brand-ink);
    line-height: 1.6;
}
.guide-alert-icon {
    color: #F97316;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Expert tip box inside pillar */
.guide-expert-tip {
    background: #FFFBEB;
    border: 1px solid #F59E0B;
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    margin-top: 1.25rem;
}
.guide-expert-tip-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #D97706;
    margin-bottom: 0.5rem;
}
.guide-expert-tip-label i { margin-right: 0.3rem; }
.guide-expert-tip p {
    font-size: 0.9rem;
    color: var(--brand-ink);
    line-height: 1.65;
    margin: 0;
}

/* Interruption CTAs */
.guide-interruption-cta {
    background: linear-gradient(135deg, #066BD6 0%, #0556AD 100%);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    color: #fff;
}
.guide-interruption-cta--plus {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
}
.guide-interruption-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.guide-interruption-inner strong { font-size: 1rem; }

/* ============================================================
   EXEMPLE DE RAPPORT PAGE
   ============================================================ */

/* Plan toggle cards */
.er-plan-card {
    background: #fff;
    border: 2px solid var(--brand-border, #e2e8f0);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 100%;
    position: relative;
}
.er-plan-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(6,107,214,0.10); }
.er-plan-card--aeo.er-plan-active {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 4px var(--brand-primary-soft);
}
.er-plan-card--plus.er-plan-active {
    border-color: #F59E0B;
    box-shadow: 0 0 0 4px #FEF3C7;
    background: linear-gradient(160deg, #fffbeb 0%, #fff 60%);
}
.er-plan-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    border-radius: 20px;
    padding: 0.2rem 0.7rem;
    margin-bottom: 0.85rem;
}
.er-plan-badge--plus { background: #FEF3C7; color: #92400E; }
.er-plan-icon { font-size: 2rem; color: var(--brand-primary); margin-bottom: 0.75rem; }
.er-plan-icon--plus { color: #D97706; }
.er-plan-title { font-size: 1rem; font-weight: 700; color: var(--brand-ink); margin-bottom: 0.4rem; }
.er-plan-price { font-size: 1.5rem; font-weight: 800; color: var(--brand-primary); margin-bottom: 0.5rem; }
.er-plan-price--plus { color: #D97706; }
.er-plan-desc { font-size: 0.82rem; color: var(--brand-ink-soft); margin: 0; line-height: 1.5; }

/* Content panels */
.er-content { animation: erFade 0.25s ease; }
@keyframes erFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Plus label */
.er-plus-badge-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #D97706;
    background: #FEF3C7;
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 1rem;
}

/* Citation Share bars */
.er-citation-card {
    background: #fff;
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 4px 20px rgba(6,107,214,0.07);
}
.er-citation-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-ink);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.er-citation-title i { color: var(--brand-primary); }
.er-citation-bars { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.25rem; }
.er-bar-row { display: flex; align-items: center; gap: 0.75rem; }
.er-bar-row--you { margin-top: 0.25rem; padding-top: 0.75rem; border-top: 1px dashed var(--brand-border); }
.er-bar-label { font-size: 0.8rem; color: var(--brand-ink-soft); width: 110px; flex-shrink: 0; text-align: right; }
.er-bar-label--you { color: var(--brand-primary); font-weight: 700; }
.er-bar-wrap { flex: 1; background: var(--brand-paper-alt); border-radius: 4px; height: 24px; overflow: hidden; }
.er-bar {
    height: 100%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    transition: width 0.8s ease;
    min-width: 2rem;
}
.er-bar--competitor  { background: #ef4444; }
.er-bar--competitor2 { background: #f97316; }
.er-bar--competitor3 { background: #eab308; color: var(--brand-ink); }
.er-bar--other       { background: #94a3b8; }
.er-bar--you         { background: var(--brand-primary); }
.er-citation-note {
    font-size: 0.82rem;
    color: #92400E;
    background: #FEF3C7;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}
.er-citation-note i { flex-shrink: 0; margin-top: 1px; }

/* Expert mock */
.er-expert-mock {
    background: #fff;
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(6,107,214,0.07);
}
.er-expert-mock-header {
    background: var(--brand-ink);
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.er-expert-mock-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #60b4ff;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.er-expert-mock-engine {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.er-expert-mock-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.er-expert-query {
    background: var(--brand-paper-alt);
    border-radius: 8px;
    padding: 0.85rem 1rem;
}
.er-expert-query-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-ink-soft);
    margin-bottom: 0.35rem;
}
.er-expert-query-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-ink);
}
.er-expert-finding, .er-expert-rec {
    padding: 1rem 1.1rem;
    border-radius: 8px;
}
.er-expert-finding { background: #fef2f2; border-left: 3px solid #ef4444; }
.er-expert-rec { background: var(--brand-primary-soft); border-left: 3px solid var(--brand-primary); }
.er-expert-finding-label, .er-expert-rec-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.er-expert-finding-label { color: #b91c1c; }
.er-expert-rec-label { color: var(--brand-primary); }
.er-expert-finding p, .er-expert-rec p {
    font-size: 0.88rem;
    color: var(--brand-ink);
    line-height: 1.65;
    margin: 0;
}
.er-expert-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    background: #FFFBEB;
    border: 1px solid #F59E0B;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    flex-wrap: wrap;
}
.er-expert-cta-text { font-size: 0.95rem; color: var(--brand-ink); }

/* ============================================================
   FAQ PAGE — ADDITIONS
   ============================================================ */

/* Inline compare strip inside FAQ answer */
.faq-compare-strip {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--brand-paper-alt);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.faq-compare-col {
    flex: 1;
    text-align: center;
    min-width: 120px;
}
.faq-compare-col--plus {
    border-left: 1px solid var(--brand-border);
    padding-left: 1rem;
}
.faq-compare-sep {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--brand-ink-soft);
    background: #fff;
    border: 1px solid var(--brand-border);
    border-radius: 20px;
    padding: 0.2rem 0.55rem;
    flex-shrink: 0;
}
.faq-compare-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-ink-soft);
    margin-bottom: 0.25rem;
}
.faq-compare-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 0.25rem;
}
.faq-compare-price--plus { color: #D97706; }
.faq-compare-time {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-ink-soft);
}
.faq-compare-time i { margin-right: 0.25rem; }

/* Inline button link */
.btn-link-inline {
    background: none;
    border: none;
    padding: 0;
    color: var(--brand-primary);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-size: inherit;
}
.btn-link-inline:hover { color: var(--brand-primary-dark); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.ct-success-box {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}
.ct-success-icon {
    font-size: 2.5rem;
    color: #22c55e;
    margin-bottom: 0.75rem;
}
.ct-success-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-ink);
    margin-bottom: 0.5rem;
}
.ct-success-box p { color: var(--brand-ink-soft); margin: 0; }

/* Info panel */
.ct-info-panel {
    background: #fff;
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    height: 100%;
}
.ct-info-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-ink);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--brand-paper-alt);
}
.ct-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--brand-paper-alt);
}
.ct-info-item:last-of-type { border-bottom: none; }
.ct-info-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-ink);
    margin-bottom: 0.2rem;
}
.ct-info-item p {
    font-size: 0.82rem;
    color: var(--brand-ink-soft);
    margin: 0;
    line-height: 1.5;
}
.ct-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--brand-primary-soft);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.ct-info-icon--plus { background: #FEF3C7; color: #D97706; }
.ct-info-note {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: var(--brand-ink-soft);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ct-info-note i { color: var(--brand-primary); }

/* ============================================================
   RGPD COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 680px;
    background: #0B1F3A;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    z-index: 9999;
    padding: 1.25rem 1.5rem;
    animation: cookieSlideUp 0.3s ease;
}
@keyframes cookieSlideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-banner-text {
    flex: 1;
    min-width: 200px;
}
.cookie-banner-text strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}
.cookie-banner-text p {
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.5;
}
.cookie-banner-text a {
    color: #60b4ff;
    text-decoration: underline;
}
.cookie-banner-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}
.btn-cookie-accept {
    background: #066BD6;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-cookie-accept:hover { background: #0556AD; }
.btn-cookie-refuse {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-cookie-refuse:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}
@media (max-width: 480px) {
    .cookie-banner { bottom: 0; left: 0; right: 0; transform: none; width: 100%; border-radius: 14px 14px 0 0; }
    .cookie-banner-inner { flex-direction: column; gap: 1rem; }
    .cookie-banner-actions { width: 100%; }
    .btn-cookie-accept, .btn-cookie-refuse { flex: 1; text-align: center; }
}

/* ============================================================
   MON ESPACE & DASHBOARD
   ============================================================ */

/* Mon Espace form card */
.me-form-card {
    background: #fff;
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 20px rgba(6,107,214,0.07);
}
.me-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-ink);
    margin-bottom: 0.5rem;
}
.me-form-desc {
    font-size: 0.9rem;
    color: var(--brand-ink-soft);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.me-form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--brand-ink-soft);
    margin-top: 1rem;
}
.me-form-note i { margin-right: 0.3rem; }
.me-no-account { font-size: 0.88rem; color: var(--brand-ink-soft); }

/* Mon Espace success */
.me-success-box {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 14px;
    padding: 2.5rem 2rem;
    text-align: center;
}
.me-success-icon { font-size: 3rem; color: #22c55e; margin-bottom: 1rem; }
.me-success-box h2 { font-size: 1.4rem; font-weight: 700; color: var(--brand-ink); margin-bottom: 0.75rem; }
.me-success-box p { color: var(--brand-ink-soft); font-size: 0.95rem; line-height: 1.6; margin-bottom: 0.5rem; }
.me-success-note { font-size: 0.82rem; color: var(--brand-ink-soft); }
.me-success-note i { margin-right: 0.3rem; }
.me-success-note a { color: var(--brand-primary); }

/* Mon Espace info panel */
.me-info-panel {
    background: #fff;
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: 14px;
    padding: 1.75rem;
}
.me-info-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-ink);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--brand-paper-alt);
}
.me-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--brand-paper-alt);
}
.me-info-item:last-child { border-bottom: none; }
.me-info-item > i {
    font-size: 1.1rem;
    color: var(--brand-primary);
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
}
.me-info-icon--plus { color: #D97706 !important; }
.me-info-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--brand-ink); margin-bottom: 0.2rem; }
.me-info-item p { font-size: 0.8rem; color: var(--brand-ink-soft); margin: 0; line-height: 1.5; }

/* Dashboard scan cards */
.db-scan-card {
    background: #fff;
    border: 1px solid var(--brand-border, #e2e8f0);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    transition: box-shadow 0.2s;
}
.db-scan-card:hover { box-shadow: 0 4px 16px rgba(6,107,214,0.08); }
.db-scan-card--paid { border-color: var(--brand-primary); }
.db-scan-left { flex: 1; min-width: 180px; }
.db-scan-domain {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-ink);
    margin-bottom: 0.35rem;
}
.db-scan-domain i { color: var(--brand-primary); }
.db-scan-domain a { color: inherit; text-decoration: none; }
.db-scan-domain a:hover { color: var(--brand-primary); }
.db-scan-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--brand-ink-soft);
}
.db-scan-paid-badge {
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 20px;
    padding: 0.15rem 0.6rem;
    font-weight: 600;
}
.db-scan-free-badge {
    background: var(--brand-paper-alt);
    color: var(--brand-ink-soft);
    border-radius: 20px;
    padding: 0.15rem 0.6rem;
    font-weight: 600;
}

/* Score circle */
.db-scan-score { text-align: center; flex-shrink: 0; }
.db-score-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 2px;
}
.db-score-or     { background: linear-gradient(135deg, #F59E0B, #D97706); }
.db-score-argent { background: linear-gradient(135deg, #94a3b8, #64748b); }
.db-score-bronze { background: linear-gradient(135deg, #cd7f32, #a0522d); }
.db-score-label  { font-size: 0.7rem; color: var(--brand-ink-soft); }

/* Dashboard actions */
.db-scan-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* Empty state */
.db-empty {
    text-align: center;
    padding: 3rem;
    color: var(--brand-ink-soft);
}
.db-empty i { font-size: 3rem; display: block; margin-bottom: 1rem; opacity: 0.3; }

/* Upsell strip */
.db-upsell {
    background: linear-gradient(135deg, #f0f7fd 0%, #fff 100%);
    border: 1px solid var(--brand-primary-soft);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}
.db-upsell-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.db-upsell-inner strong { font-size: 0.95rem; color: var(--brand-ink); display: block; margin-bottom: 0.3rem; }
.db-upsell-inner p { font-size: 0.85rem; color: var(--brand-ink-soft); }

/* Token note */
.db-token-note {
    font-size: 0.78rem;
    color: var(--brand-ink-soft);
    text-align: center;
}
.db-token-note i { margin-right: 0.3rem; }
.db-token-note a { color: var(--brand-primary); }

/* ============================================================
   DASHBOARD — ADDITIONS (filter, pagination, green paid)
   ============================================================ */

/* Green border + button for paid reports */
.db-scan-card--paid {
    border-color: #22c55e !important;
    box-shadow: 0 0 0 2px rgba(34,197,94,0.15);
}

/* Filter tabs */
.db-filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.db-filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-ink-soft);
    background: var(--brand-paper-alt);
    border: 1px solid var(--brand-border);
    text-decoration: none;
    transition: all 0.15s;
}
.db-filter-tab:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.db-filter-tab.active { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.db-filter-tab--paid.active { background: #22c55e; border-color: #22c55e; }
.db-filter-tab--free.active { background: var(--brand-ink-soft); border-color: var(--brand-ink-soft); }
.db-filter-count {
    background: rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 0 0.4rem;
    font-size: 0.75rem;
}
.db-filter-tab:not(.active) .db-filter-count {
    background: var(--brand-border);
    color: var(--brand-ink-soft);
}

/* Pagination */
.db-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}
.db-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-ink-soft);
    background: #fff;
    border: 1px solid var(--brand-border);
    text-decoration: none;
    transition: all 0.15s;
}
.db-page-btn:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.db-page-btn.active { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.db-pagination-info {
    text-align: center;
    font-size: 0.78rem;
    color: var(--brand-ink-soft);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* ============================================================
   RGPD COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 680px;
    background: #0B1F3A;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    z-index: 9999;
    padding: 1.25rem 1.5rem;
    animation: cookieSlideUp 0.3s ease;
}
@keyframes cookieSlideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 200px; }
.cookie-banner-text strong { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 0.3rem; }
.cookie-banner-text p { color: rgba(255,255,255,0.65); font-size: 0.8rem; margin: 0; line-height: 1.5; }
.cookie-banner-text a { color: #60b4ff; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.btn-cookie-accept { background: #066BD6; color: #fff; border: none; border-radius: 8px; padding: 0.5rem 1.1rem; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.btn-cookie-accept:hover { background: #0556AD; }
.btn-cookie-refuse { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 0.5rem 1.1rem; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.btn-cookie-refuse:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
@media (max-width: 480px) {
    .cookie-banner { bottom: 0; left: 0; right: 0; transform: none; width: 100%; border-radius: 14px 14px 0 0; }
    .cookie-banner-inner { flex-direction: column; gap: 1rem; }
    .cookie-banner-actions { width: 100%; }
    .btn-cookie-accept, .btn-cookie-refuse { flex: 1; text-align: center; }
}

/* ============================================================
   MON ESPACE & DASHBOARD
   ============================================================ */
.me-form-card { background: #fff; border: 1px solid var(--brand-border, #e2e8f0); border-radius: 14px; padding: 2rem 1.75rem; box-shadow: 0 4px 20px rgba(6,107,214,0.07); }
.me-form-title { font-size: 1.25rem; font-weight: 700; color: var(--brand-ink); margin-bottom: 0.5rem; }
.me-form-desc { font-size: 0.9rem; color: var(--brand-ink-soft); margin-bottom: 1.5rem; line-height: 1.6; }
.me-form-note { text-align: center; font-size: 0.78rem; color: var(--brand-ink-soft); margin-top: 1rem; }
.me-form-note i { margin-right: 0.3rem; }
.me-no-account { font-size: 0.88rem; color: var(--brand-ink-soft); }
.me-success-box { background: #f0fdf4; border: 1px solid #86efac; border-radius: 14px; padding: 2.5rem 2rem; text-align: center; }
.me-success-icon { font-size: 3rem; color: #22c55e; margin-bottom: 1rem; }
.me-success-box h2 { font-size: 1.4rem; font-weight: 700; color: var(--brand-ink); margin-bottom: 0.75rem; }
.me-success-box p { color: var(--brand-ink-soft); font-size: 0.95rem; line-height: 1.6; margin-bottom: 0.5rem; }
.me-success-note { font-size: 0.82rem; color: var(--brand-ink-soft); }
.me-success-note a { color: var(--brand-primary); }
.me-info-panel { background: #fff; border: 1px solid var(--brand-border, #e2e8f0); border-radius: 14px; padding: 1.75rem; }
.me-info-title { font-size: 0.95rem; font-weight: 700; color: var(--brand-ink); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--brand-paper-alt); }
.me-info-item { display: flex; align-items: flex-start; gap: 0.85rem; padding: 0.75rem 0; border-bottom: 1px solid var(--brand-paper-alt); }
.me-info-item:last-child { border-bottom: none; }
.me-info-item > i { font-size: 1.1rem; color: var(--brand-primary); flex-shrink: 0; margin-top: 2px; width: 20px; }
.me-info-icon--plus { color: #D97706 !important; }
.me-info-item strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--brand-ink); margin-bottom: 0.2rem; }
.me-info-item p { font-size: 0.8rem; color: var(--brand-ink-soft); margin: 0; line-height: 1.5; }
.db-scan-card { background: #fff; border: 1px solid var(--brand-border, #e2e8f0); border-radius: 12px; padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; transition: box-shadow 0.2s; }
.db-scan-card:hover { box-shadow: 0 4px 16px rgba(6,107,214,0.08); }
.db-scan-card--paid { border-color: #22c55e !important; box-shadow: 0 0 0 2px rgba(34,197,94,0.15); }
.db-scan-left { flex: 1; min-width: 180px; }
.db-scan-domain { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; font-weight: 700; color: var(--brand-ink); margin-bottom: 0.35rem; }
.db-scan-domain i { color: var(--brand-primary); }
.db-scan-domain a { color: inherit; text-decoration: none; }
.db-scan-domain a:hover { color: var(--brand-primary); }
.db-scan-meta { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; font-size: 0.78rem; color: var(--brand-ink-soft); }
.db-scan-paid-badge { background: #e8f5e9; color: #2e7d32; border-radius: 20px; padding: 0.15rem 0.6rem; font-weight: 600; }
.db-scan-free-badge { background: var(--brand-paper-alt); color: var(--brand-ink-soft); border-radius: 20px; padding: 0.15rem 0.6rem; font-weight: 600; }
.db-scan-score { text-align: center; flex-shrink: 0; }
.db-score-circle { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0 auto 2px; }
.db-score-or { background: linear-gradient(135deg, #F59E0B, #D97706); }
.db-score-argent { background: linear-gradient(135deg, #94a3b8, #64748b); }
.db-score-bronze { background: linear-gradient(135deg, #cd7f32, #a0522d); }
.db-score-label { font-size: 0.7rem; color: var(--brand-ink-soft); }
.db-scan-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; flex-shrink: 0; }
.db-empty { text-align: center; padding: 3rem; color: var(--brand-ink-soft); }
.db-empty i { font-size: 3rem; display: block; margin-bottom: 1rem; opacity: 0.3; }
.db-upsell { background: linear-gradient(135deg, #f0f7fd 0%, #fff 100%); border: 1px solid var(--brand-primary-soft); border-radius: 12px; padding: 1.25rem 1.5rem; }
.db-upsell-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; flex-wrap: wrap; }
.db-upsell-inner strong { font-size: 0.95rem; color: var(--brand-ink); display: block; margin-bottom: 0.3rem; }
.db-upsell-inner p { font-size: 0.85rem; color: var(--brand-ink-soft); }
.db-token-note { font-size: 0.78rem; color: var(--brand-ink-soft); text-align: center; }
.db-token-note a { color: var(--brand-primary); }
.db-filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.db-filter-tab { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.45rem 1rem; border-radius: 20px; font-size: 0.82rem; font-weight: 600; color: var(--brand-ink-soft); background: var(--brand-paper-alt); border: 1px solid var(--brand-border); text-decoration: none; transition: all 0.15s; }
.db-filter-tab:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.db-filter-tab.active { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.db-filter-tab--paid.active { background: #22c55e; border-color: #22c55e; }
.db-filter-tab--free.active { background: var(--brand-ink-soft); border-color: var(--brand-ink-soft); }
.db-filter-count { background: rgba(255,255,255,0.25); border-radius: 10px; padding: 0 0.4rem; font-size: 0.75rem; }
.db-filter-tab:not(.active) .db-filter-count { background: var(--brand-border); color: var(--brand-ink-soft); }
.db-pagination { display: flex; align-items: center; justify-content: center; gap: 0.35rem; }
.db-page-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; color: var(--brand-ink-soft); background: #fff; border: 1px solid var(--brand-border); text-decoration: none; transition: all 0.15s; }
.db-page-btn:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.db-page-btn.active { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.db-pagination-info { text-align: center; font-size: 0.78rem; color: var(--brand-ink-soft); margin-top: 0.75rem; margin-bottom: 0; }

/* ============================================================
   BLOG SHARE BUTTONS
   ============================================================ */
.article-share { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; padding: 1.25rem 0; border-top: 1px solid var(--brand-border); margin-top: 1.5rem; }
.article-share-label { font-size: 0.85rem; font-weight: 700; color: var(--brand-ink-soft); flex-shrink: 0; }
.share-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.9rem; border-radius: 8px; font-size: 0.8rem; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: all 0.15s ease; white-space: nowrap; }
.share-btn--facebook { background: #1877F2; color: #fff; }
.share-btn--facebook:hover { background: #166FE5; color: #fff; }
.share-btn--twitter { background: #000; color: #fff; }
.share-btn--twitter:hover { background: #333; color: #fff; }
.share-btn--linkedin { background: #0A66C2; color: #fff; }
.share-btn--linkedin:hover { background: #0958A8; color: #fff; }
.share-btn--email { background: #6B7280; color: #fff; }
.share-btn--email:hover { background: #4B5563; color: #fff; }
.share-btn--copy { background: var(--brand-paper-alt); color: var(--brand-ink); border: 1px solid var(--brand-border); }
.share-btn--copy:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
.share-btn--copied { background: #f0fdf4; color: #22c55e; border-color: #22c55e; }
@media (max-width: 480px) {
    .share-btn span { display: none; }
    .share-btn { padding: 0.5rem 0.75rem; }
}

/* ============================================================
   BLOG SHARE MINI (top of article)
   ============================================================ */
.article-share-mini {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
}
.article-share-mini-label {
    font-size: 0.72rem;
    color: var(--brand-ink-soft);
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-right: 0.2rem;
}
.share-mini-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    font-size: 0.8rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.15s ease;
    background: var(--brand-paper-alt);
    color: var(--brand-ink-soft);
    border: 1px solid var(--brand-border);
}
.share-mini-btn:hover { transform: translateY(-1px); }
.share-mini--facebook:hover  { background: #1877F2; color: #fff; border-color: #1877F2; }
.share-mini--twitter:hover   { background: #000; color: #fff; border-color: #000; }
.share-mini--linkedin:hover  { background: #0A66C2; color: #fff; border-color: #0A66C2; }
.share-mini--email:hover     { background: #6B7280; color: #fff; border-color: #6B7280; }
.share-mini--copy:hover      { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }
.share-mini--copied          { background: #f0fdf4 !important; color: #22c55e !important; border-color: #22c55e !important; }

/* ==========================================================
   ACCESSIBILITY FIXES — May 2026
   PageSpeed Insights / Lighthouse a11y violations
   ==========================================================
   Fixes:
   - Color contrast on .price-anchor (was #9CA3AF, ~3.0:1 — fails AA)
   - Color contrast on .price-period inside featured pricing card
     (light text on light gradient background)
   - Underline in-content paragraph links so users with low vision
     or color-blindness can identify them by shape, not just color.
     Nav links, button links, and card links stay clean.
   ========================================================== */

/* --- Contrast: strikethrough anchor price (was failing 4.5:1) --- */
.price-anchor {
    color: #6B7280;  /* was #9CA3AF — now ~5.7:1 on white, passes AA */
}

/* --- Contrast: "à vie" / "paiement unique" period labels on featured
       pricing card (the dark/gradient background variant). The default
       .price-period color is fine on white but loses contrast on the
       featured-card gradient. */
.pricing-card-featured .price-period,
.pricing-card-plus .price-period {
    color: #4B5563;  /* darker grey, ~7.2:1 on light backgrounds */
}

/* --- Link distinguishability: underline in-content paragraph links.
       We scope this so navigation, buttons, cards, footer columns,
       and other UI links remain undecorated by default. Only links
       inside actual text paragraphs (and step descriptions) get
       underlined, which is the WCAG-recommended pattern. */
p a:not(.btn):not(.nav-link):not(.sidebar-nav-item):not([class*="brand"]),
.step-text a,
.hero-subtitle a,
.block-desc a,
.perception-source a,
.faq-answer a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

/* Keep the underline stable on hover (no flicker) */
p a:not(.btn):not(.nav-link):not(.sidebar-nav-item):not([class*="brand"]):hover,
.step-text a:hover,
.hero-subtitle a:hover,
.block-desc a:hover,
.perception-source a:hover,
.faq-answer a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

/* === Section divider (between Comment ça marche and Tarifs) === */
.section-divider {
    padding: 1rem 0;
}
.section-divider-line {
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(0, 0, 0, 0.08) 20%,
        rgba(0, 0, 0, 0.12) 50%,
        rgba(0, 0, 0, 0.08) 80%,
        transparent 100%);
    max-width: 600px;
    margin: 0 auto;
}

/* === What we analyze (transparency block) === */
.section-pad-sm {
    padding: 3.5rem 0;
}
.what-we-analyze {
    background: #FAFBFC;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.wwa-head {
    margin-bottom: 2.5rem;
}
.wwa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (max-width: 768px) {
    .wwa-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
.wwa-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.wwa-item:hover {
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}
.wwa-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: #4F46E5;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.08);
    border-radius: 8px;
}
.wwa-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.35rem 0;
    color: #1A2332;
    line-height: 1.3;
}
.wwa-text {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #5C6A85;
    margin: 0;
}
.wwa-disclaimer {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: #FFFFFF;
    border-left: 3px solid #4F46E5;
    border-radius: 6px;
}
.wwa-disclaimer p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #3A4356;
}
.wwa-disclaimer i {
    color: #4F46E5;
    margin-right: 0.4rem;
}

/* ==========================================================
   COMPARER PAGE — Citora vs competitors comparison
   ========================================================== */

.compare-table-wrap {
    overflow-x: auto;
    margin: 0 0 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.compare-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.compare-table thead th {
    padding: 1rem 0.75rem;
    text-align: center;
    background: #f8fafc;
    border-bottom: 2px solid #e5e7eb;
    vertical-align: top;
    font-weight: 600;
    color: #0f172a;
}

.compare-table thead th.compare-th-feature {
    text-align: left;
    background: #fff;
    width: 28%;
    min-width: 220px;
    color: #64748b;
    font-weight: 500;
    font-size: 0.85rem;
}

.compare-table thead th.compare-th-us {
    background: #eff6ff;
    border-bottom-color: var(--brand-accent, #2563eb);
    border-bottom-width: 3px;
    position: relative;
}

.compare-table thead th.compare-th-us::before {
    content: 'Nous';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-accent, #2563eb);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-th-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.compare-table thead th.compare-th-us .compare-th-name {
    color: var(--brand-accent, #2563eb);
}

.compare-th-pricing {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.compare-th-tag {
    font-size: 0.7rem;
    color: #475569;
    font-weight: 400;
}

.compare-table tbody td {
    padding: 0.85rem 0.75rem;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
    vertical-align: middle;
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table tbody tr:hover {
    background: #fafafa;
}

.compare-table .compare-feature {
    text-align: left;
    color: #334155;
    font-weight: 500;
    font-size: 0.88rem;
}

.compare-table .compare-us {
    background: #f0f9ff;
}

.compare-table .compare-us i.bi-check-circle-fill {
    color: var(--brand-accent, #2563eb);
    font-size: 1.15rem;
}

.compare-table tbody td i {
    font-size: 1rem;
}

.compare-table .text-muted {
    color: #94a3b8 !important;
}

.compare-table .text-warning {
    color: #d97706 !important;
}

.compare-table .text-success {
    color: #059669 !important;
}

.compare-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    font-size: 0.85rem;
    color: #64748b;
    margin: 1rem 0 0.5rem;
}

.compare-legend i {
    margin-right: 0.35rem;
}

.compare-disclaimer {
    text-align: center;
    font-size: 0.78rem;
    color: #94a3b8;
    font-style: italic;
    margin: 0.5rem 0 0;
    line-height: 1.5;
}

/* Why-different cards */
.compare-why-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    text-align: left;
}

.compare-why-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    color: var(--brand-accent, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.compare-why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.compare-why-card p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

.compare-why-card code {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 0.05rem 0.3rem;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.78rem;
    color: #0369a1;
}

/* Honest positioning grid */
.compare-honest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.compare-honest-item {
    background: #f8fafc;
    border-left: 3px solid #cbd5e1;
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
}

.compare-honest-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.compare-honest-item h3 i {
    color: var(--brand-accent, #2563eb);
    margin-right: 0.4rem;
}

.compare-honest-item p {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .compare-honest-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .compare-legend {
        gap: 1rem;
        font-size: 0.78rem;
    }
}

.compare-cell-sub {
    display: block;
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 400;
    margin-top: 0.15rem;
}

.compare-table tbody td.compare-us strong {
    color: var(--brand-accent, #2563eb);
    font-size: 1rem;
}

/* ==========================================================
   HOMEPAGE REVIEWS (admin-editable testimonials)
   ========================================================== */

.reviews-section {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.review-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem 1.4rem;
    height: 100%;
    box-shadow: 0 1px 3px rgba(15,26,46,0.04);
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
    letter-spacing: 0.05em;
}

.review-stars .review-star-empty {
    color: #e2e8f0;
}

.review-quote {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.1rem;
    flex: 1;
    font-style: italic;
}

.review-author {
    border-top: 1px solid #f1f5f9;
    padding-top: 0.85rem;
    font-size: 0.88rem;
    color: #0f172a;
    line-height: 1.4;
}

.review-author .review-role {
    display: block;
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 400;
    margin-top: 0.15rem;
}

@media (max-width: 768px) {
    .review-card { padding: 1.25rem 1.1rem; }
    .review-quote { font-size: 0.9rem; }
}
