@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Lora:wght@400;500;600;700&display=swap');

/* ═══════════════════════════════════════════
   DESIGN TOKENS — Expertise, Empathie, Sérénité
   ═══════════════════════════════════════════ */
:root {
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Lora', serif;
  --navy: #1E293B;
  --navy-light: #314255;
  --sage: #6B9080;
  --sage-deep: #5E8B7E;
  --gold: #D9734E;
  --gold-light: #E59A7A;
  --cream: #F9F9F7;
  --cream-dark: #ECE9E1;
  --text: #1E293B;
  --text-muted: #5C6976;
  --white: #ffffff;
  --text-on-dark: #F9F9F7;
  --text-on-dark-muted: rgba(249,249,247,0.82);
  --text-on-dark-soft: rgba(249,249,247,0.68);
  --ink: #233446;
  --ink-soft: #3A5065;
  --panel: rgba(255,255,255,0.88);
  --panel-soft: rgba(255,255,255,0.72);
  --border: rgba(30,41,59,0.12);
  --border-strong: rgba(30,41,59,0.18);
  --brand-ribbon: linear-gradient(90deg, var(--navy) 0%, var(--sage) 58%, var(--gold) 100%);
  --brand-ribbon-vertical: linear-gradient(180deg, var(--navy) 0%, var(--sage) 58%, var(--gold) 100%);
  --shadow-soft: 0 18px 42px rgba(30,41,59,0.08);
  --shadow-strong: 0 30px 84px rgba(30,41,59,0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --header-h: 88px;
}

/* =========================================
   READABILITY + MOTION PASS
   ========================================= */
:root {
  --text-muted: #475565;
  --text-on-dark-muted: rgba(249,249,247,0.92);
  --text-on-dark-soft: rgba(249,249,247,0.84);
  --panel-strong: rgba(255,255,255,0.92);
  --motion-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  background:
    radial-gradient(circle at 8% 10%, rgba(107,144,128,0.16) 0%, transparent 24%),
    radial-gradient(circle at 94% 16%, rgba(217,115,78,0.1) 0%, transparent 18%),
    radial-gradient(circle at 82% 82%, rgba(107,144,128,0.08) 0%, transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, #f8f8f5 46%, #f2f5ef 100%);
}

.hero,
.page-hero,
.article-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  align-self: start;
  padding: 32px 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.68) 100%);
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: 0 28px 62px rgba(30,41,59,0.1);
  backdrop-filter: blur(14px);
  animation: introRise 0.82s var(--motion-smooth) both;
}

.hero-copy::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 18px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217,115,78,0.18) 0%, rgba(217,115,78,0) 70%);
  filter: blur(8px);
  z-index: -1;
}

.hero-sub,
.page-hero > p,
.article-hero > p,
.reviews-page-note,
.contact-page-note,
.overview-note,
.article-summary,
.review-submit-rule {
  width: min(100%, 760px);
  padding: 18px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.78) 100%);
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: 0 18px 38px rgba(30,41,59,0.07);
  backdrop-filter: blur(12px);
}

.hero-sub,
.page-hero > p,
.article-hero > p,
.article-summary {
  color: var(--text);
}

.page-hero,
.article-hero {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at 10% 16%, rgba(107,144,128,0.2) 0%, transparent 24%),
    radial-gradient(circle at 90% 20%, rgba(217,115,78,0.14) 0%, transparent 20%),
    linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,247,242,0.98) 52%, rgba(239,243,239,0.98) 100%);
}

.page-hero::before,
.article-hero::before,
.hero::before {
  animation: ambientDrift 18s ease-in-out infinite alternate;
  transform-origin: center;
}

.page-hero > .section-label,
.page-hero > .section-title,
.page-hero > p,
.page-hero > .page-hero-actions,
.article-hero > .article-breadcrumb,
.article-hero > .section-title,
.article-hero > p,
.article-hero > .article-meta,
.article-hero > .article-keywords {
  animation: introRise 0.78s var(--motion-smooth) both;
}

.page-hero > .section-title,
.article-hero > .section-title {
  color: var(--navy);
  max-width: min(100%, 780px);
}

.page-hero > .section-title { animation-delay: 70ms; }
.page-hero > p,
.article-hero > p { animation-delay: 130ms; }
.page-hero > .page-hero-actions,
.article-hero > .article-meta,
.article-hero > .article-keywords { animation-delay: 190ms; }

.page-hero > p,
.article-hero > p,
.article-breadcrumb,
.article-meta,
.article-keywords {
  position: relative;
  z-index: 2;
}

.page-hero > p,
.article-hero > p,
.article-breadcrumb,
.article-meta,
.article-keywords {
  margin-top: 0;
}

.article-breadcrumb,
.article-meta,
.article-keywords {
  width: fit-content;
  max-width: min(100%, 860px);
  padding: 14px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.76) 100%);
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: 0 16px 34px rgba(30,41,59,0.07);
  backdrop-filter: blur(12px);
}

.article-breadcrumb,
.article-meta,
.article-keywords-label {
  color: var(--navy-light);
}

.article-breadcrumb a {
  color: var(--navy);
}

.article-keyword-row span {
  background: rgba(107,144,128,0.12);
  border: 1px solid rgba(107,144,128,0.18);
  color: var(--navy);
}

.hero-notes span,
.signal-chips span,
.overview-point,
.service-tag,
.service-quick-tags span,
.service-graphic-chips span,
.resource-chip-row span,
.review-submit-point,
.national-item,
.review-timeline span {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.74) 100%);
  border: 1px solid rgba(107,144,128,0.18);
  box-shadow: 0 10px 24px rgba(30,41,59,0.05);
  color: var(--navy);
}

.national-banner {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.74) 100%);
  border-top: 1px solid rgba(30,41,59,0.08);
  border-bottom: 1px solid rgba(30,41,59,0.08);
  backdrop-filter: blur(12px);
}

.problem-card,
.pillar-card,
.service-quick,
.service-full,
.resource-card,
.case-card,
.testimonial-card,
.review-card,
.review-stat,
.services-overview-card,
.contact-card,
.founder-card,
.founder-manifesto,
.review-carousel-viewport {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--motion-smooth), box-shadow 0.35s var(--motion-smooth), border-color 0.35s var(--motion-smooth), background 0.35s var(--motion-smooth);
}

.problem-card::after,
.pillar-card::after,
.service-quick::after,
.service-full::after,
.resource-card::after,
.case-card::after,
.testimonial-card::after,
.review-card::after,
.review-stat::after,
.services-overview-card::after,
.contact-card::after,
.founder-card::after,
.founder-manifesto::after,
.review-carousel-viewport::after {
  content: '';
  position: absolute;
  inset: auto -18% -58% 42%;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(107,144,128,0.18) 0%, rgba(107,144,128,0) 70%);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.45s var(--motion-smooth), transform 0.45s var(--motion-smooth);
  pointer-events: none;
}

.problem-card:hover,
.pillar-card:hover,
.service-quick:hover,
.service-full:hover,
.resource-card:hover,
.case-card:hover,
.testimonial-card:hover,
.review-card:hover,
.review-stat:hover,
.services-overview-card:hover,
.contact-card:hover,
.founder-card:hover,
.founder-manifesto:hover,
.review-carousel-viewport:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 62px rgba(30,41,59,0.12);
  border-color: rgba(107,144,128,0.26);
}

.problem-card:hover::after,
.problem-card:focus-within::after,
.pillar-card:hover::after,
.pillar-card:focus-within::after,
.service-quick:hover::after,
.service-quick:focus-within::after,
.service-full:hover::after,
.service-full:focus-within::after,
.resource-card:hover::after,
.resource-card:focus-within::after,
.case-card:hover::after,
.case-card:focus-within::after,
.testimonial-card:hover::after,
.testimonial-card:focus-within::after,
.review-card:hover::after,
.review-card:focus-within::after,
.review-stat:hover::after,
.review-stat:focus-within::after,
.services-overview-card:hover::after,
.services-overview-card:focus-within::after,
.contact-card:hover::after,
.contact-card:focus-within::after,
.founder-card:hover::after,
.founder-card:focus-within::after,
.founder-manifesto:hover::after,
.founder-manifesto:focus-within::after,
.review-carousel-viewport:hover::after,
.review-carousel-viewport:focus-within::after {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.72s var(--motion-smooth),
    transform 0.72s var(--motion-smooth),
    filter 0.72s var(--motion-smooth);
  transition-delay: var(--reveal-delay, 0ms);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.hero-panel.fade-up.visible {
  animation: panelGlow 6.4s ease-in-out infinite;
}

@keyframes ambientDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(18px, -14px, 0) scale(1.06);
  }
}

@keyframes introRise {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes panelGlow {
  0%,
  100% {
    box-shadow: 0 30px 70px rgba(30,41,59,0.22);
  }
  50% {
    box-shadow: 0 38px 88px rgba(30,41,59,0.28);
  }
}

@media (max-width: 900px) {
  .hero-copy {
    padding: 24px 22px;
    border-radius: 28px;
  }

  .hero-sub,
  .page-hero > p,
  .article-hero > p,
  .reviews-page-note,
  .contact-page-note,
  .overview-note,
  .article-summary,
  .review-submit-rule,
  .article-breadcrumb,
  .article-meta,
  .article-keywords {
    width: 100%;
    padding: 16px 16px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .how-steps::after,
  .hero-copy,
  .page-hero > *,
  .article-hero > *,
  .hero-panel.fade-up.visible,
  .hero::before,
  .page-hero::before,
  .article-hero::before,
  .fade-up,
  .fade-up.visible,
  .problem-card,
  .pillar-card,
  .service-quick,
  .service-full,
  .resource-card,
  .case-card,
  .testimonial-card,
  .review-card,
  .review-stat,
  .services-overview-card,
  .contact-card,
  .founder-card,
  .founder-manifesto,
  .review-carousel-viewport {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }

  .fade-up {
    opacity: 1 !important;
  }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(107,144,128,0.12) 0%, transparent 28%),
    linear-gradient(180deg, #fdfcf8 0%, var(--cream) 100%);
  line-height: 1.72;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

h1, h2, h3,
.hero-title,
.section-title,
.site-search-head h2,
.page-hero .section-title,
.bulletin-form h3,
.contact-row-body h3,
.article-sidebar-card h3,
.article-cta-box h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.025em;
}

/* ═══════════════════════════════════════════
   HEADER FIXE
   ═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(249,249,247,0.82);
  border-bottom: 1px solid rgba(30,41,59,0.08);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 34px rgba(30,41,59,0.08);
}

.site-header::after {
  content: '';
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(107,144,128,0) 0%, rgba(107,144,128,0.55) 38%, rgba(217,115,78,0.52) 100%);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 0;
  min-height: 56px;
  flex: 0 0 auto;
}

.header-logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.header-logo-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 194px;
}

.header-logo-kicker {
  color: var(--sage-deep);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

.header-logo-name {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header-link:hover,
.header-link.active {
  color: var(--navy);
  background: rgba(107,144,128,0.12);
  transform: translateY(-1px);
}

.header-cta {
  margin-left: 8px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 30px rgba(217,115,78,0.24);
}

.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(217,115,78,0.28);
}

.header-search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(30,41,59,0.09);
  background: rgba(255,255,255,0.72);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header-search-trigger:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(107,144,128,0.32);
  transform: translateY(-1px);
}

.header-search-shortcut {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  border-radius: var(--radius-pill);
  background: rgba(107,144,128,0.14);
  color: var(--navy);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

@media (max-width: 1320px) {
  .site-header {
    padding: 0 28px;
  }

  .site-header::after {
    left: 28px;
    right: 28px;
  }

  .header-logo {
    gap: 12px;
  }

  .header-logo-copy {
    max-width: 156px;
  }

  .header-logo-kicker {
    display: none;
  }

  .header-logo-name {
    font-size: 0.92rem;
  }

  .header-link {
    font-size: 0.78rem;
    padding: 10px 9px;
  }

  .header-cta {
    padding: 10px 13px;
    font-size: 0.76rem;
  }
}

body.site-search-open {
  overflow: hidden;
}

body.site-search-open .mobile-callbar {
  opacity: 0;
  pointer-events: none;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 420;
}

.site-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30,41,59,0.7);
  backdrop-filter: blur(8px);
}

.site-search-panel {
  position: relative;
  width: min(960px, calc(100vw - 32px));
  margin: 84px auto 24px;
  max-height: calc(100vh - 108px);
  overflow: auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(246,247,251,0.98) 100%);
  border: 1px solid rgba(30,41,59,0.12);
  box-shadow: 0 34px 90px rgba(30,41,59,0.28);
  padding: 30px;
}

.site-search-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.site-search-kicker {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.site-search-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.1;
  color: var(--text);
}

.site-search-close {
  border: 1px solid rgba(30,41,59,0.16);
  background: var(--white);
  color: var(--navy);
  min-height: 42px;
  padding: 0 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.site-search-form {
  margin-bottom: 14px;
}

.site-search-input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(30,41,59,0.16);
  background: var(--white);
  padding: 0 18px;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(30,41,59,0.8);
}

.site-search-input:focus {
  outline: 2px solid rgba(30,41,59,0.22);
  outline-offset: 1px;
  border-color: rgba(30,41,59,0.4);
}

.site-search-status {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 18px;
}

.site-search-suggestions {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.site-search-suggestion-block {
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(30,41,59,0.08);
  padding: 18px;
}

.site-search-suggestion-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.site-search-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-search-chip {
  border: 1px solid rgba(30,41,59,0.14);
  background: var(--white);
  color: var(--text);
  min-height: 38px;
  padding: 0 14px;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.site-search-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.site-search-featured-item,
.site-search-result {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid rgba(30,41,59,0.1);
  padding: 16px 18px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.site-search-featured-item:hover,
.site-search-result:hover {
  transform: translateY(-2px);
  border-color: rgba(30,41,59,0.24);
  box-shadow: 0 18px 34px rgba(30,41,59,0.08);
}

.site-search-featured-item span,
.site-search-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.site-search-featured-item strong,
.site-search-result h3 {
  display: block;
  color: var(--text);
  line-height: 1.35;
}

.site-search-results {
  display: grid;
  gap: 12px;
}

.site-search-result-type {
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-search-result h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.site-search-result p,
.site-search-empty p {
  color: var(--text-muted);
}

.site-search-empty {
  background: rgba(255,255,255,0.72);
  border: 1px dashed rgba(30,41,59,0.18);
  padding: 22px 20px;
}

/* Hamburger mobile */
.header-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.header-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(30,41,59,0.34) 0%, transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(217,115,78,0.24) 0%, transparent 28%),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 58%, #314255 100%);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(30,41,59,0.12) 0%, transparent 42%),
    linear-gradient(90deg, transparent 0 10%, rgba(255,255,255,0.06) 10% 10.8%, transparent 10.8% 69%, rgba(217,115,78,0.14) 69% 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}

.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 60px 140px;
  position: relative;
  z-index: 5;
  max-width: 1100px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 56px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-ribbon);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.4);
  text-underline-offset: 0.12em;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--text-on-dark-muted);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  border: 2px solid var(--gold);
  font-family: var(--font-body);
  box-shadow: 0 14px 30px rgba(217,115,78,0.24);
}

.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  color: rgba(30,41,59,0.8);
  font-weight: 400;
  font-size: 0.88rem;
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 1px solid rgba(30,41,59,0.18);
  background: rgba(255,255,255,0.03);
  transition: all 0.2s;
  font-family: var(--font-body);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.65);
  color: white;
  background: rgba(255,255,255,0.08);
}

.resources-page-cta .btn-outline,
.resources-bottom-cta .btn-outline {
  color: var(--navy);
  border-color: rgba(30,41,59,0.22);
  background: rgba(255,255,255,0.9);
}

.resources-page-cta .btn-outline:hover,
.resources-page-cta .btn-outline:focus-visible,
.resources-bottom-cta .btn-outline:hover,
.resources-bottom-cta .btn-outline:focus-visible {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  border: 2px solid var(--navy);
  font-family: var(--font-body);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-stats {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 5;
}

.stat {
  text-align: right;
  padding-right: 22px;
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 5px;
  border-radius: 999px;
  background: rgba(30,41,59,0.12);
}

.stat-num {
  font-family: var(--font-body);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
  font-weight: 400;
}

.stat:nth-child(1)::after { background: var(--navy); }
.stat:nth-child(2)::after { background: var(--white); }
.stat:nth-child(3)::after { background: var(--gold); }

/* ═══════════════════════════════════════════
   NATIONAL BANNER
   ═══════════════════════════════════════════ */
.national-banner {
  position: relative;
  background:
    linear-gradient(135deg, rgba(30,41,59,0.16), rgba(217,115,78,0.12)),
    var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.national-banner::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--brand-ribbon);
}

.national-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(30,41,59,0.78);
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.national-item::before {
  content: '';
  display: block;
  width: 18px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-ribbon);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════════
   CONTACT FORM (section dans index)
   ═══════════════════════════════════════════ */
.contact-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  padding: 100px 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-block {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 700;
}

.contact-info-item a, .contact-info-item p {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.contact-info-item a:hover { color: var(--gold); }

.bulletin-form {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  padding: 44px 40px;
  border: 1px solid rgba(30,41,59,0.1);
  border-top: 4px solid transparent;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.bulletin-form::before {
  content: '';
  position: absolute;
  left: -1px;
  right: -1px;
  top: -4px;
  height: 4px;
  background: var(--brand-ribbon);
}

.bulletin-form h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.bulletin-form .form-subtitle {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-style: italic;
  font-weight: 300;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--cream-dark);
  background: var(--white);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { min-height: 90px; resize: vertical; }

.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-check input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 15px; height: 15px;
  accent-color: var(--gold);
}

.form-check a { color: var(--gold); text-decoration: underline; cursor: pointer; }

.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 15px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 14px 30px rgba(30,41,59,0.18);
}

.form-submit:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(217,115,78,0.22);
}

/* ═══════════════════════════════════════════
   CGV MODAL
   ═══════════════════════════════════════════ */
.cgv-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,0.75);
  z-index: 1000;
  overflow-y: auto;
  padding: 40px 20px;
}

.cgv-modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }

.cgv-modal {
  background: var(--white);
  max-width: 860px;
  width: 100%;
  padding: 60px;
  position: relative;
  margin: auto;
}

.cgv-modal h1 {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.cgv-modal .cgv-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream-dark);
}

.cgv-modal h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 10px;
  border-left: 4px solid transparent;
  padding-left: 12px;
  border-image: var(--brand-ribbon-vertical) 1;
}

.cgv-modal p, .cgv-modal li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.cgv-modal ul { padding-left: 20px; margin-bottom: 10px; }

.cgv-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}

.cgv-close:hover { color: var(--navy); }

.cgv-link {
  color: var(--gold);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
}

/* ═══════════════════════════════════════════
   SECTION BASE
   ═══════════════════════════════════════════ */
section { padding: 100px 60px; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: block;
  width: 56px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-ribbon);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.85;
}

/* ═══════════════════════════════════════════
   INTRO STRIP
   ═══════════════════════════════════════════ */
.intro-strip {
  background: linear-gradient(180deg, var(--white) 0%, #FCFBF8 100%);
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.intro-quote {
  border-left: 0;
  padding-left: 28px;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.75;
  position: relative;
}

.intro-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand-ribbon-vertical);
}

/* ═══════════════════════════════════════════
   PROBLÈME
   ═══════════════════════════════════════════ */
.probleme {
  background:
    radial-gradient(circle at 10% 100%, rgba(30,41,59,0.24) 0%, transparent 40%),
    radial-gradient(circle at 100% 0, rgba(217,115,78,0.18) 0%, transparent 34%),
    linear-gradient(135deg, var(--ink) 0%, #314255 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.probleme::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 72%);
}

.probleme .section-title { color: var(--white); }
.probleme .section-intro { color: var(--text-on-dark-muted); }

.probleme .section-label {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  box-shadow: none;
}

.probleme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.probleme-card {
  border: 1px solid rgba(255,255,255,0.58);
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.probleme-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--brand-ribbon);
}

.probleme-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

.probleme-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.probleme-card h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.probleme-card p {
  font-size: 0.88rem;
  color: var(--text-on-dark-soft);
  line-height: 1.75;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  background: transparent;
}

.service-item {
  background: var(--white);
  padding: 44px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--brand-ribbon);
}

.service-item:hover {
  background: #FCFBF8;
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(30,41,59,0.12);
}

.service-num {
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(30,41,59,0.14);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
  text-align: right;
}

.service-content h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

.service-tag {
  display: inline-block;
  background: rgba(30,41,59,0.06);
  color: var(--navy);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
  font-weight: 700;
  border: 1px solid rgba(30,41,59,0.08);
}

/* ═══════════════════════════════════════════
   COMMENT ÇA MARCHE
   ═══════════════════════════════════════════ */
.how {
  background: var(--white);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16.666%;
  right: 16.666%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(217,115,78,0.24) 0%, rgba(107,144,128,0.34) 50%, rgba(217,115,78,0.24) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.how-steps::after {
  content: '';
  position: absolute;
  top: 34px;
  left: 16.666%;
  right: 16.666%;
  height: 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(217,115,78,0.96) 0 24%, rgba(217,115,78,0.46) 42%, rgba(217,115,78,0) 72%) 0 50% / 72px 12px no-repeat;
  animation: howConnectorFlow 4.6s ease-in-out infinite;
  pointer-events: none;
}

.how-step {
  padding: 0 40px;
  padding-top: 80px;
  text-align: center;
  position: relative;
}

.how-step-dot {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--navy);
  box-shadow: 0 0 0 5px rgba(217,115,78,0.14);
  z-index: 1;
}

.how-step-num {
  display: block;
  font-family: var(--font-body);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}

@keyframes howConnectorFlow {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.6;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

.how-step h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.how-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   TARIF
   ═══════════════════════════════════════════ */
.tarif {
  background:
    radial-gradient(circle at 15% 18%, rgba(30,41,59,0.3) 0%, transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(217,115,78,0.22) 0%, transparent 26%),
    linear-gradient(135deg, var(--ink) 0%, #314255 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tarif::before {
  content: '"';
  font-family: var(--font-body);
  font-size: 30rem;
  font-weight: 800;
  color: rgba(255,255,255,0.02);
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.tarif .section-title { color: var(--white); }

.tarif .section-label {
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  box-shadow: none;
}

.tarif-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 60px auto 0;
}

.tarif-card {
  border: 1px solid rgba(255,255,255,0.58);
  padding: 50px 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}

.tarif-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--brand-ribbon);
}

.tarif-card:hover {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}

.tarif-card.featured {
  border-color: rgba(255,255,255,0.24);
  background: linear-gradient(180deg, rgba(30,41,59,0.14) 0%, rgba(217,115,78,0.08) 100%);
}

.tarif-card,
.tarif-card h3,
.tarif-card strong {
  color: var(--white);
}

.tarif-badge {
  position: absolute;
  top: 0; right: 0;
  background: rgba(249,249,247,0.94);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0 0 0 var(--radius-pill);
  border-left: 1px solid rgba(217,115,78,0.22);
  border-bottom: 1px solid rgba(217,115,78,0.22);
}

.tarif-card h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
}

.tarif-price {
  font-family: var(--font-body);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.tarif-price sup {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}

.tarif-period {
  font-size: 0.82rem;
  color: rgba(242,249,255,0.82);
  margin-bottom: 28px;
  font-weight: 300;
}

.tarif-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.tarif-features li {
  font-size: 0.88rem;
  color: rgba(244,251,255,0.92);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 300;
}

.tarif-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.tarif-cta {
  display: block;
  text-align: center;
  margin-top: auto;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  font-weight: 700;
}

.tarif-cta:hover, .tarif-card.featured .tarif-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.tarif-note {
  margin-top: 40px;
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(242,249,255,0.84);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════
   ENGAGEMENT
   ═══════════════════════════════════════════ */
.engagement {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.engagement-left {
  padding: 100px 60px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.engagement-right {
  background: linear-gradient(135deg, rgba(30,41,59,0.94) 0%, rgba(30,41,59,0.98) 100%);
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.engagement-right::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

.engage-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.engage-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.engage-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.engage-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.engage-item p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.testimonial-block {
  border-left: 0;
  padding: 32px 36px;
  background: rgba(255,255,255,0.05);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.testimonial-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand-ribbon-vertical);
}

.testimonial-block p {
  font-style: italic;
  font-weight: 400;
  font-size: 1.02rem;
  color: rgba(30,41,59,0.8);
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.engagement-right .section-title { color: var(--white); font-size: 1.8rem; margin-bottom: 32px; }

/* ═══════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════ */
.cta-final {
  background:
    linear-gradient(135deg, rgba(30,41,59,0.08), rgba(217,115,78,0.08)),
    var(--white);
  text-align: center;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: 'IC';
  font-family: var(--font-body);
  font-size: 28vw;
  font-weight: 800;
  color: rgba(30,41,59,0.06);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.cta-final::after {
  content: '';
  position: absolute;
  left: 60px;
  right: 60px;
  top: 32px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand-ribbon);
}

.cta-final .section-label { justify-content: center; }
.cta-final .section-title { max-width: 640px; margin-left: auto; margin-right: auto; }

.cta-final-sub {
  font-style: italic;
  font-weight: 300;
  font-size: 1.02rem;
  color: var(--text-muted);
  margin: 16px auto 40px;
  max-width: 480px;
  line-height: 1.75;
}

.cta-final .btn-primary {
  display: inline-block;
  margin-top: 0;
  color: var(--white);
  font-size: 0.95rem;
  padding: 18px 48px;
}

.cta-tel {
  display: block;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.cta-tel a {
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  background: var(--ink);
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

.footer-logo {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 0;
}

.footer-logo img {
  width: min(100%, 300px);
  height: auto;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a,
.footer-links button {
  color: var(--text-on-dark-soft);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
  padding: 0;
}

.footer-links a:hover,
.footer-links button:hover { color: var(--gold); }

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.58);
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════
   PAGES STATIQUES (CGV, Contact, Services)
   ═══════════════════════════════════════════ */
.page-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(30,41,59,0.3) 0%, transparent 32%),
    radial-gradient(circle at 88% 72%, rgba(217,115,78,0.2) 0%, transparent 28%),
    linear-gradient(135deg, var(--ink) 0%, #314255 100%);
  padding: 80px 60px 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(30,41,59,0.12) 0%, transparent 42%),
    linear-gradient(90deg, transparent 0 10%, rgba(255,255,255,0.05) 10% 10.7%, transparent 10.7% 70%, rgba(217,115,78,0.12) 70% 100%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 24px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand-ribbon);
}

.page-hero .section-label { position: relative; z-index: 2; }

.page-hero .section-title {
  color: var(--white);
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-hero p {
  color: var(--text-on-dark-muted);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}

.page-hero .hero-phone-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.page-hero .hero-phone-link:hover,
.page-hero .hero-phone-link:focus-visible {
  color: #ffd8cb;
  text-decoration: none;
}

.page-content {
  background: var(--white);
  padding: 80px 60px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}

/* Page CGV */
.cgv-page h1 {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.cgv-page .cgv-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream-dark);
}

.cgv-page h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 12px;
  border-left: 4px solid transparent;
  padding-left: 12px;
  border-image: var(--brand-ribbon-vertical) 1;
}

.cgv-page p, .cgv-page li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 10px;
  font-weight: 300;
}

.cgv-page strong { color: var(--text); font-weight: 700; }

.cgv-page ul { padding-left: 20px; margin-bottom: 12px; }

/* Page Contact */
.contact-page {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  min-height: 60vh;
}

.contact-page .contact-grid {
  padding: 80px 60px;
}

.contact-page-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 60px;
}

.contact-page-note {
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(30,41,59,0.1);
  border-top: 4px solid transparent;
  padding: 52px 52px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.contact-card::before {
  content: '';
  position: absolute;
  left: -1px;
  right: -1px;
  top: -4px;
  height: 4px;
  background: var(--brand-ribbon);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.contact-row-icon {
  width: 48px;
  height: 48px;
  background: rgba(30,41,59,0.06);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(30,41,59,0.08);
}

.contact-row-body h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-row-body a,
.contact-row-body p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.4;
}

.contact-row-body a:hover { color: var(--gold); text-decoration: underline; }

.contact-divider {
  height: 1px;
  background: var(--border);
}

/* Page Services */
.services-page {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding: 0 0 96px;
}

.services-overview,
.services-highlight-grid,
.services-page-grid,
.services-page-cta {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

.services-overview {
  padding-top: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
}

.services-overview-card {
  background: var(--white);
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.services-overview-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

.services-overview-copy {
  padding: 40px 42px;
}

.services-overview-copy .section-title {
  max-width: 12ch;
  margin-bottom: 16px;
}

.services-overview-copy .section-intro {
  max-width: none;
}

.services-overview-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.overview-point {
  background: rgba(30,41,59,0.06);
  border: 1px solid rgba(30,41,59,0.08);
  padding: 8px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}

.services-overview-metrics {
  padding: 32px;
  background: linear-gradient(180deg, rgba(30,41,59,0.06) 0%, rgba(217,115,78,0.03) 100%);
  display: grid;
  gap: 12px;
  align-content: start;
}

.overview-metric {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(30,41,59,0.08);
}

.overview-metric:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.overview-metric strong {
  font-size: 2.4rem;
  line-height: 1;
  color: var(--navy);
  font-weight: 800;
}

.overview-metric span {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  text-align: right;
}

.overview-note {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 8px;
}

.services-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.service-quick {
  background: linear-gradient(180deg, var(--white) 0%, #FCFBF8 100%);
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: var(--shadow-soft);
  padding: 26px 24px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.service-quick-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-quick::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--brand-ribbon);
}

.service-quick:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(30,41,59,0.12);
  background: #ffffff;
}

.service-quick-link:focus-visible {
  outline: 3px solid rgba(30,41,59,0.22);
  outline-offset: 3px;
}

.service-quick-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.service-quick-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(30,41,59,0.1), rgba(217,115,78,0.08));
  box-shadow: inset 0 0 0 1px rgba(30,41,59,0.08);
}

.service-quick-num {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.service-quick h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 800;
}

.service-quick p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 18px;
}

.service-quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-quick-tags span {
  padding: 6px 10px;
  background: rgba(30,41,59,0.05);
  border: 1px solid rgba(30,41,59,0.08);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}

.service-quick-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.services-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}

.service-full {
  background: linear-gradient(180deg, var(--white) 0%, #FCFBF8 100%);
  padding: 40px;
  display: grid;
  grid-template-columns: 80px minmax(0, 1.15fr) 248px;
  gap: 28px;
  align-items: start;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: var(--shadow-soft);
  scroll-margin-top: calc(var(--header-h) + 28px);
}

.service-full::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

.service-full:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(30,41,59,0.12);
}

.service-full-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.service-full-badge {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.service-full-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(30,41,59,0.12), rgba(217,115,78,0.08));
  box-shadow: inset 0 0 0 1px rgba(30,41,59,0.08);
}

.service-full-line {
  flex: 1;
  width: 2px;
  min-height: 40px;
  background: linear-gradient(180deg, rgba(30,41,59,0.25) 0%, rgba(217,115,78,0.25) 100%);
}

.service-full-body {
  padding-right: 4px;
}

.service-full-figure {
  margin: 26px 0 0;
  padding: 28px;
  background: linear-gradient(135deg, rgba(30,41,59,0.04), rgba(217,115,78,0.05));
  border: 1px solid rgba(30,41,59,0.08);
  overflow: hidden;
}

.service-full-figure img {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}

.service-full-figure figcaption {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.service-graphic {
  display: grid;
  gap: 20px;
}

.service-graphic-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  background: rgba(30,41,59,0.08);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-graphic-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 16px;
  align-items: stretch;
  counter-reset: service-flow-step;
}

.service-graphic-columns,
.service-graphic-matrix,
.service-graphic-hub,
.service-graphic-shield {
  display: grid;
  gap: 14px;
}

.service-graphic-columns {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 1.08fr) minmax(0, 1fr);
}

.service-graphic-matrix {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.service-graphic-hub {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.service-graphic-selection {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.04fr);
  gap: 16px;
  align-items: stretch;
}

.service-graphic-stack {
  display: grid;
  gap: 14px;
}

.service-graphic-shield {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.service-graphic-node {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  min-height: 132px;
  padding: 20px 18px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: 0 18px 30px rgba(30,41,59,0.05);
}

.service-graphic-node::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  width: 46px;
  height: 4px;
  background: var(--brand-ribbon);
}

.service-graphic-node strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.4;
  font-weight: 800;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
  max-width: 24ch;
}

.service-graphic-node span {
  display: block;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.58;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
  max-width: 32ch;
}

.service-graphic--flow .service-graphic-node {
  counter-increment: service-flow-step;
  padding-top: 42px;
}

.service-graphic--flow .service-graphic-node::after {
  content: 'Etape ' counter(service-flow-step, decimal-leading-zero);
  position: absolute;
  top: 12px;
  right: 16px;
  color: rgba(30,41,59,0.52);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-graphic-node--core {
  background:
    radial-gradient(circle at top right, rgba(217,115,78,0.08), transparent 42%),
    rgba(255,255,255,0.98);
  border-color: rgba(30,41,59,0.16);
}

.service-graphic-node--result {
  background:
    radial-gradient(circle at top left, rgba(30,41,59,0.09), transparent 40%),
    rgba(255,255,255,0.98);
  border-color: rgba(217,115,78,0.18);
}

.service-graphic-arrow {
  display: none;
}

.service-graphic-arrow::after {
  content: none;
}

.service-graphic-chips,
.service-graphic-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-graphic-chips span,
.service-graphic-footer span {
  padding: 8px 12px;
  background: rgba(30,41,59,0.78);
  border: 1px solid rgba(30,41,59,0.08);
  color: var(--navy);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
  font-weight: 700;
}

.service-graphic-matrix .service-graphic-node--core,
.service-graphic-hub .service-graphic-node--core,
.service-graphic-shield .service-graphic-node--core {
  grid-column: 1 / -1;
}

.service-graphic-selection .service-graphic-node--core {
  min-height: 100%;
}

.service-full-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.service-full-body h3 {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-full-body p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 14px;
}

.service-full-sub {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  position: relative;
}

.service-full-sub::before {
  content: '';
  position: absolute;
  left: 0;
  top: -2px;
  width: 56px;
  height: 4px;
  background: var(--brand-ribbon);
}

.service-full-sub h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-credential-panel {
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(30,41,59,0.05), rgba(217,115,78,0.05));
  border: 1px solid rgba(30,41,59,0.08);
}

.service-credential-label {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.service-credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-credential-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(30,41,59,0.08);
  padding: 18px 18px 16px;
}

.service-credential-card h5 {
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.35;
  margin-bottom: 12px;
  font-weight: 800;
}

.service-credential-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

.service-credential-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.service-credential-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.65;
}

.service-credential-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.service-full-aside {
  background: linear-gradient(180deg, rgba(30,41,59,0.05) 0%, rgba(217,115,78,0.04) 100%);
  border: 1px solid rgba(30,41,59,0.08);
  padding: 24px;
  align-self: stretch;
}

.service-full-aside h4 {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}

.service-full-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 20px;
}

.service-full-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.service-full-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.service-full-callout {
  padding-top: 18px;
  border-top: 1px solid rgba(30,41,59,0.08);
  font-size: 0.85rem;
  color: var(--navy);
  line-height: 1.7;
  font-weight: 500;
}

.services-page-cta {
  margin-top: 40px;
}

.services-page-cta-inner {
  background: linear-gradient(135deg, rgba(30,41,59,0.08), rgba(217,115,78,0.08)), var(--white);
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 56px 32px;
}

.services-page-cta-inner::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

.services-page-cta-inner .section-label {
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  box-shadow: none;
}

.services-page-cta-inner .section-title {
  max-width: 520px;
  margin: 0 auto 18px;
}

.services-page-cta-inner p {
  max-width: 460px;
  margin: 0 auto 30px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.services-page-cta-note {
  margin-top: 26px;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.services-page-cta-note a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --header-h: 68px; }

  .site-header { padding: 0 24px; }
  .header-logo { padding: 0; }
  .header-logo-img {
    width: 44px;
    height: 44px;
  }
  .header-logo {
    gap: 10px;
  }
  .header-logo-copy {
    gap: 2px;
    max-width: 124px;
  }
  .header-logo-kicker {
    display: block;
    font-size: 0.48rem;
    letter-spacing: 0.09em;
  }
  .header-logo-name {
    font-size: 0.76rem;
  }
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(30,41,59,0.98);
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 199;
    gap: 4px;
    box-shadow: 0 22px 40px rgba(30,41,59,0.2);
  }
  .header-search-trigger {
    justify-content: space-between;
    width: 100%;
  }
  .header-search-shortcut {
    display: none;
  }
  .header-cta { margin-left: 0; margin-top: 12px; text-align: center; }
  .header-toggle { display: flex; }

  .site-search-panel {
    width: calc(100vw - 20px);
    margin: 74px auto 14px;
    max-height: calc(100vh - 88px);
    padding: 22px 18px;
  }

  .site-search-head {
    flex-direction: column;
  }

  .site-search-close {
    width: 100%;
  }

  .site-search-featured-grid {
    grid-template-columns: 1fr;
  }

  section { padding: 70px 28px; }
  .hero-body { padding: 40px 28px 120px; }
  .hero-stats { display: none; }
  .intro-strip { grid-template-columns: 1fr; gap: 40px; padding: 60px 28px; }
  .probleme-grid { grid-template-columns: 1fr; }
  .services-header { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before,
  .how-steps::after { display: none; }
  .how-step { padding: 20px 0; }
  .how-step-dot { display: none; }
  .tarif-cards { grid-template-columns: 1fr; }
  .engagement { grid-template-columns: 1fr; }
  .engagement-left, .engagement-right { padding: 60px 28px; }
  footer { flex-direction: column; align-items: flex-start; padding: 40px 28px; }
  .footer-links { flex-wrap: wrap; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-section { padding: 70px 28px; }
  .contact-page .contact-grid { padding: 50px 28px; }
  .contact-info-block,
  .bulletin-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cgv-modal { padding: 40px 24px; }
  .national-banner { padding: 18px 28px; gap: 20px; }
  .page-hero { padding: 60px 28px 50px; }
  .page-hero::after,
  .cta-final::after { left: 28px; right: 28px; }
  .page-content { padding: 50px 28px; }
  .contact-page-inner { padding: 50px 28px; }
  .contact-card { padding: 36px 28px; }
  .footer-logo { padding: 0; }
  .footer-logo img { width: min(100%, 240px); }
  .services-overview,
  .services-highlight-grid,
  .services-page-grid,
  .services-page-cta {
    padding-left: 28px;
    padding-right: 28px;
  }
  .services-overview { grid-template-columns: 1fr; padding-top: 40px; }
  .services-highlight-grid { grid-template-columns: 1fr; }
  .service-full { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
  .service-full-side { flex-direction: row; align-items: center; }
  .service-full-line { width: 100%; height: 2px; min-height: 2px; }
  .service-full-aside { padding: 20px; }
  .service-full-figure { padding: 18px; }
  .service-credential-panel { padding: 20px; }
  .service-credential-grid { grid-template-columns: 1fr; }
  .service-graphic-flow,
  .service-graphic-columns,
  .service-graphic-matrix,
  .service-graphic-hub,
  .service-graphic-selection,
  .service-graphic-shield {
    grid-template-columns: 1fr;
  }
  .service-graphic-matrix .service-graphic-node--core,
  .service-graphic-hub .service-graphic-node--core,
  .service-graphic-shield .service-graphic-node--core {
    grid-column: auto;
  }
  .service-graphic-node strong,
  .service-graphic-node span {
    max-width: none;
  }
}

/* ═══════════════════════════════════════════
   SERENITY REFRESH OVERRIDES
   ═══════════════════════════════════════════ */
section {
  padding: 112px 72px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  width: fit-content;
  max-width: 100%;
  border-radius: var(--radius-pill);
  background: rgba(107,144,128,0.1);
  color: var(--sage-deep);
  box-shadow: inset 0 0 0 1px rgba(107,144,128,0.16);
}

.section-title {
  color: var(--navy);
}

.section-intro,
.page-hero p,
.contact-page-note,
.service-full-sub p,
.article-content p,
.article-sidebar-card p,
.article-sidebar-card li,
.resource-card p,
.case-card p,
.testimonial-card p,
.founder-card p,
.founder-manifesto p {
  color: var(--text-muted);
}

.contact-page-note {
  color: var(--gold);
}

.hero {
  background:
    radial-gradient(circle at 14% 18%, rgba(107,144,128,0.14) 0%, transparent 26%),
    radial-gradient(circle at 86% 20%, rgba(217,115,78,0.14) 0%, transparent 24%),
    linear-gradient(135deg, #fffefb 0%, #f3f3ef 52%, #eef2ef 100%);
}

.hero::before {
  background:
    linear-gradient(118deg, rgba(255,255,255,0.76) 0%, rgba(255,255,255,0.16) 42%, transparent 72%),
    radial-gradient(circle at 78% 24%, rgba(107,144,128,0.2) 0%, transparent 20%),
    radial-gradient(circle at 88% 74%, rgba(217,115,78,0.18) 0%, transparent 26%);
}

.hero::after {
  height: 150px;
  background: linear-gradient(to bottom, rgba(249,249,247,0), var(--cream));
}

.hero-body {
  max-width: 1220px;
  padding: 84px 60px 156px;
}

.hero-title {
  max-width: 12ch;
  color: var(--navy);
  line-height: 1.04;
}

.hero-title em {
  font-style: normal;
  color: var(--sage-deep);
  text-decoration-color: rgba(217,115,78,0.4);
  text-underline-offset: 0.18em;
}

.hero-sub {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-label {
  color: var(--sage-deep);
  font-weight: 700;
}

.hero-label::before {
  background: var(--brand-ribbon);
  box-shadow: none;
}

.page-hero,
.article-hero {
  background:
    radial-gradient(circle at top right, rgba(107,144,128,0.14) 0%, transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(249,249,247,0.96) 100%);
}

.page-hero::before,
.article-hero::before {
  background:
    linear-gradient(108deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0) 56%),
    radial-gradient(circle at 92% 20%, rgba(217,115,78,0.14) 0%, transparent 28%);
}

.page-hero::after,
.article-hero::after {
  opacity: 0.32;
}

.article-breadcrumb,
.resource-meta,
.overview-note,
.review-submit-rule,
.article-meta {
  color: var(--sage-deep);
}

.btn-primary,
.btn-outline,
.btn-secondary,
.form-submit,
.tarif-cta {
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  text-transform: none;
}

.btn-primary,
.btn-secondary,
.form-submit,
.tarif-cta {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 16px 32px rgba(217,115,78,0.2);
}

.btn-primary:hover,
.btn-secondary:hover,
.form-submit:hover,
.tarif-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline,
.page-hero-link,
.text-link {
  color: var(--navy);
}

.btn-secondary {
  color: var(--white);
}

.btn-outline {
  border-color: rgba(30,41,59,0.12);
  background: rgba(255,255,255,0.72);
}

.btn-outline:hover {
  border-color: rgba(107,144,128,0.3);
  background: rgba(107,144,128,0.1);
  color: var(--navy);
}

.hero-notes span,
.signal-chips span,
.overview-point,
.service-tag,
.service-quick-tags span,
.service-graphic-chips span,
.resource-chip-row span,
.article-keyword-row span,
.review-submit-point,
.national-item {
  border-radius: var(--radius-pill);
  background: rgba(107,144,128,0.1);
  border: 1px solid rgba(107,144,128,0.16);
  box-shadow: none;
  color: var(--navy);
}

.national-banner {
  padding: 22px 60px;
  gap: 14px;
  background: transparent;
}

.national-banner::before {
  display: none;
}

.hero-panel,
.problem-card,
.pillar-card,
.case-card,
.testimonial-card,
.resource-card,
.services-overview-card,
.service-quick,
.service-full,
.contact-card,
.contact-info-block,
.bulletin-form,
.review-submit-copy,
.reviews-page-note,
.article-content,
.article-sidebar-card,
.article-cta-box,
.article-strategic-support,
.usefulness-vote,
.founder-card,
.founder-manifesto,
.how-step,
.tarif-card,
.resources-network,
.resources-page-cta,
.services-page-cta-inner,
.review-carousel-viewport,
.resource-callout,
.contact-map-note,
.cta-support-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  background: linear-gradient(180deg, rgba(30,41,59,0.95) 0%, rgba(49,66,85,0.94) 100%);
  border-color: rgba(255,255,255,0.08);
}

.problem-card,
.pillar-card,
.service-quick,
.resource-card,
.case-card,
.testimonial-card,
.article-sidebar-card,
.article-cta-box,
.review-submit-copy {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.problem-card:hover,
.pillar-card:hover,
.service-quick:hover,
.resource-card:hover,
.case-card:hover,
.testimonial-card:hover,
.article-sidebar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(30,41,59,0.12);
  border-color: rgba(107,144,128,0.24);
}

.contact-grid,
.services-overview,
.hero-layout,
.problem-layout,
.founder-grid,
.article-layout {
  gap: 36px;
}

.ui-icon {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
}

.problem-card-icon,
.service-quick-icon,
.service-full-icon,
.contact-row-icon,
.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  background: rgba(107,144,128,0.12);
  border: 1px solid rgba(107,144,128,0.18);
  box-shadow: none;
}

.problem-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
}

.service-quick-icon,
.contact-info-icon,
.contact-row-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
}

.service-full-icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
}

.problem-card-icon .ui-icon,
.service-full-icon .ui-icon {
  width: 30px;
  height: 30px;
}

.contact-info-icon .ui-icon,
.service-quick-icon .ui-icon,
.contact-row-icon .ui-icon {
  width: 24px;
  height: 24px;
}

.resources-network-shell,
.resources-network-map-panel,
.resources-network-preview,
.resources-network-expanded,
.resources-network-related-card,
.article-figure,
.service-full-figure,
.service-full-aside,
.service-credential-panel {
  border-radius: 24px;
}

.resources-network-node,
.resources-network-preview,
.resources-network-related-card,
.resources-network-expanded,
.article-journey-node,
.article-journey-visual-node,
.article-journey-card,
.article-journey-visual-hub {
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  border-color: rgba(30,41,59,0.1);
}

.article-journey-progress,
.resources-network-zoom-indicator {
  background: rgba(107,144,128,0.12);
}

.article-journey-progress-bar,
.article-journey-visual-link.is-active,
.article-journey-visual-connector.is-active {
  background: linear-gradient(90deg, var(--sage) 0%, var(--gold) 100%);
}

.article-journey-shape,
.article-journey-visual-badge,
.article-journey-visual-link,
.resources-network-node.is-hub .resources-network-node-orb,
.resources-network-node.is-hub .resources-network-node-orb::before {
  background: linear-gradient(135deg, var(--navy) 0%, var(--sage) 100%);
}

.article-journey-shape-wrap::after,
.article-journey-status-dot {
  background: var(--gold);
}

.resources-network-node-label,
.article-journey-node-title,
.article-journey-visual-title,
.article-journey-visual-hub strong {
  color: var(--navy);
}

.reviews-page-note,
.review-submit-copy,
.article-sidebar-card,
.article-cta-box,
.article-strategic-support,
.usefulness-vote {
  padding: 30px 28px;
}

.review-submit-point {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
}

.review-submit-point::before {
  content: '';
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--gold);
  flex: 0 0 auto;
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(30,41,59,0.12);
  background: rgba(255,255,255,0.94);
  font-size: 1rem;
  padding: 15px 16px;
  box-shadow: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(107,144,128,0.62);
  box-shadow: 0 0 0 4px rgba(107,144,128,0.14);
  outline: none;
}

.cta-final,
.tarif,
footer {
  background: linear-gradient(135deg, var(--navy) 0%, #2A3D4F 62%, #4F6B66 100%);
}

footer {
  padding: 58px 60px;
}

.footer-logo {
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 16px 30px rgba(30,41,59,0.12);
}

.footer-logo img {
  display: block;
  width: min(100%, 300px);
  height: auto;
}

footer::before {
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(107,144,128,0.72) 40%, rgba(217,115,78,0.7) 100%);
}

.footer-links a:hover,
.footer-links button:hover {
  color: #ffd8cb;
}

.footer-legal {
  color: var(--text-on-dark-soft);
}

@media (max-width: 900px) {
  section {
    padding: 78px 28px;
  }

  .hero-body {
    padding: 48px 28px 128px;
  }

  .site-header {
    padding: 0 20px;
  }

  .site-header::after {
    left: 20px;
    right: 20px;
  }

  .header-nav.open {
    background: rgba(249,249,247,0.98);
    border-top: 1px solid rgba(30,41,59,0.08);
    box-shadow: 0 24px 42px rgba(30,41,59,0.12);
  }

  .header-nav.open .header-link,
  .header-nav.open .header-cta {
    width: 100%;
  }

  .national-banner {
    padding: 18px 28px;
  }

  .reviews-page-note,
  .review-submit-copy,
  .article-sidebar-card,
  .article-cta-box,
  .article-strategic-support,
  .usefulness-vote {
    padding: 24px 20px;
  }
}

/* =========================================
   CONVERSION LANDING, RESOURCES, ARTICLES
   ========================================= */
.hero-body {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: center;
  width: 100%;
}

.hero-copy .hero-sub {
  max-width: none;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-notes span {
  padding: 8px 12px;
  border: 1px solid rgba(30,41,59,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(30,41,59,0.84);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (min-width: 1081px) {
  .hero-notes {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .hero-notes span {
    white-space: nowrap;
    padding: 7px 10px;
    font-size: 0.66rem;
    letter-spacing: 0.03em;
  }
}

.hero-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(107,144,128,0.14);
  box-shadow: var(--shadow-strong);
  padding: 30px 28px;
  position: relative;
  backdrop-filter: blur(16px);
}

.hero-panel::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(107,144,128,0.14);
}

.hero-panel-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  font-weight: 700;
}

.hero-panel-phone {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.hero-panel-list {
  display: grid;
  gap: 16px;
}

.hero-panel-item strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.hero-panel-item span {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.65;
  font-weight: 300;
}

.hero-panel-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  align-items: stretch;
}

.hero-panel-metrics div {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.58);
  padding: 14px 12px;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.hero-panel-metrics div:last-child {
  grid-column: 1 / -1;
}

.hero-panel-metrics strong {
  display: block;
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 800;
}

.hero-panel-metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.72);
  font-size: clamp(0.64rem, 0.16vw + 0.6rem, 0.7rem);
  letter-spacing: 0.02em;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.problem-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.signal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.signal-chips span {
  background: rgba(30,41,59,0.06);
  border: 1px solid rgba(30,41,59,0.1);
  color: var(--navy);
  padding: 8px 12px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.problem-card {
  background: linear-gradient(180deg, var(--white) 0%, #FCFBF8 100%);
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: var(--shadow-soft);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--brand-ribbon);
}

.problem-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30,41,59,0.1), rgba(217,115,78,0.08));
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.problem-card h3 {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.3;
  margin-bottom: 10px;
  font-weight: 800;
}

.problem-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
}

.section-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.section-cta-row-center {
  justify-content: center;
}

.text-link {
  color: var(--navy);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.text-link:hover {
  color: var(--gold);
}

.probleme .text-link,
.founder-section .text-link {
  color: var(--text-on-dark);
  border-bottom-color: rgba(255,255,255,0.45);
}

.probleme .text-link:hover,
.founder-section .text-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.pillar-card {
  background: linear-gradient(180deg, var(--white) 0%, #FCFBF8 100%);
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: var(--shadow-soft);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

.pillar-index {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.pillar-card h3 {
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 800;
}

.pillar-card p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.93rem;
  font-weight: 300;
}

.pillar-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.pillar-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.65;
}

.pillar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.case-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.case-section > .section-title,
.case-section > .section-intro {
  width: min(100%, 1100px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.case-grid {
  max-width: 1100px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.case-card {
  background: var(--white);
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: var(--shadow-soft);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

.case-kicker {
  display: inline-flex;
  padding: 7px 12px;
  background: rgba(30,41,59,0.06);
  border: 1px solid rgba(30,41,59,0.08);
  color: var(--navy);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.case-card h3 {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.3;
  margin-bottom: 12px;
  font-weight: 800;
}

.case-card p,
.case-block p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
}

.case-block {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(30,41,59,0.08);
}

.case-block strong {
  display: block;
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.case-result {
  margin-top: 18px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(30,41,59,0.05), rgba(217,115,78,0.05));
  color: var(--navy);
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 500;
}

.testimonial-grid {
  max-width: 1100px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-section-head {
  max-width: 1100px;
  margin: 28px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-section-head .text-link {
  align-self: flex-start;
  margin-top: 6px;
}

.testimonial-title {
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 800;
}

.testimonial-note {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

.review-carousel {
  max-width: 1100px;
  margin: 24px auto 0;
  background: var(--white);
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: var(--shadow-soft);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.review-carousel::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

.review-carousel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.review-carousel-status {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.review-carousel-controls {
  display: flex;
  gap: 10px;
}

.review-carousel-controls button {
  min-width: 72px;
  padding: 10px 14px;
  border: 1px solid rgba(30,41,59,0.12);
  background: rgba(30,41,59,0.04);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.review-carousel-controls button:hover {
  background: var(--navy);
  color: var(--white);
}

.review-carousel-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.reviews-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.review-card {
  background: linear-gradient(180deg, var(--white) 0%, #FCFBF8 100%);
  border: 1px solid rgba(30,41,59,0.08);
  padding: 22px 20px;
  box-shadow: var(--shadow-soft);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.review-card-label {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.review-card-date {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card h3 {
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.35;
  margin-bottom: 12px;
  font-weight: 800;
}

.review-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  font-weight: 300;
}

.review-card-body {
  display: grid;
  gap: 12px;
}

.review-card-expanded {
  padding: 26px 24px;
}

.review-card-expanded h3 {
  font-size: 1.16rem;
  margin-bottom: 14px;
}

.review-card-expanded .review-card-body p {
  color: var(--text);
}

.review-card-outcome {
  margin-top: 18px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(30,41,59,0.05), rgba(217,115,78,0.05));
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.7;
  border-left: 4px solid var(--gold);
}

.review-card-outcome strong {
  font-weight: 800;
}

.review-card-meta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(30,41,59,0.08);
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.reviews-page {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding-bottom: 96px;
}

.reviews-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
}

.reviews-page-note {
  background: rgba(30,41,59,0.04);
  border-left: 4px solid var(--gold);
  color: var(--text);
  padding: 18px 20px;
  line-height: 1.75;
  font-size: 0.92rem;
}

.reviews-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.review-stat {
  background: var(--white);
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: var(--shadow-soft);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
}

.review-stat::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

.review-stat strong {
  display: block;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.review-stat span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  margin-bottom: 28px;
}

.review-timeline span {
  background: rgba(30,41,59,0.06);
  border: 1px solid rgba(30,41,59,0.08);
  color: var(--navy);
  padding: 8px 12px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.review-submit-block {
  margin-top: 40px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, rgba(30,41,59,0.05), rgba(217,115,78,0.04));
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.review-submit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
}

.review-submit-copy {
  padding: 38px 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.98) 100%);
  position: relative;
}

.review-submit-copy::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

.review-submit-copy .section-title {
  margin-bottom: 16px;
}

.review-submit-copy .section-intro {
  margin-bottom: 0;
}

.review-submit-copy p {
  color: var(--text-muted);
  line-height: 1.8;
}

.review-submit-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.review-submit-point {
  padding: 14px 16px;
  background: rgba(30,41,59,0.04);
  border-left: 4px solid var(--navy);
  color: var(--text);
  line-height: 1.7;
  font-size: 0.92rem;
}

.review-submit-rule {
  margin-top: 22px;
  padding: 14px 16px;
  background: rgba(217,115,78,0.06);
  border-left: 4px solid var(--gold);
  color: var(--text);
  font-size: 0.88rem;
}

.review-submit-block .bulletin-form {
  height: 100%;
  border: 0;
  box-shadow: none;
}

.review-submit-block .bulletin-form::before {
  display: none;
}

.founder-section {
  background:
    radial-gradient(circle at 20% 18%, rgba(30,41,59,0.24) 0%, transparent 32%),
    radial-gradient(circle at 82% 75%, rgba(217,115,78,0.18) 0%, transparent 30%),
    linear-gradient(135deg, var(--ink) 0%, #314255 100%);
  color: var(--white);
}

.founder-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
}

.founder-card,
.founder-manifesto {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.58);
  box-shadow: var(--shadow-strong);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
}

.founder-card::before,
.founder-manifesto::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

.founder-card .section-title,
.founder-manifesto h3 {
  color: var(--white);
}

.founder-section .section-label {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  box-shadow: none;
}

.founder-card .section-intro,
.founder-manifesto p {
  color: var(--text-on-dark-muted);
}

.founder-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.founder-metrics div {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px 14px;
}

.founder-metrics strong {
  display: block;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 800;
}

.founder-metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-quote {
  font-size: 1.35rem;
  line-height: 1.35;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
}

.founder-statement {
  margin-top: 22px;
  padding: 22px 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(217,115,78,0.06));
  border-left: 4px solid var(--gold);
}

.founder-statement-kicker {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.founder-statement p + p {
  margin-top: 14px;
}

.founder-points {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.founder-points li {
  position: relative;
  padding-left: 18px;
  color: var(--gold);
  line-height: 1.7;
  font-size: 0.92rem;
  font-weight: 500;
}

.founder-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.resources-home {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 34px auto 0;
  align-items: stretch;
}

.resource-card {
  background: var(--white);
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: var(--shadow-soft);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.resource-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

.resource-card-link {
  cursor: pointer;
}

.resource-card-link:hover,
.resource-card-link:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(30,41,59,0.12);
  border-color: rgba(30,41,59,0.18);
  background: linear-gradient(180deg, #ffffff 0%, #FAF8F4 100%);
}

.resource-card-link:focus-visible {
  outline: 2px solid rgba(30,41,59,0.22);
  outline-offset: 3px;
}

.resource-meta {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}

.resource-card h3 {
  color: var(--navy);
  font-size: 1.14rem;
  line-height: 1.3;
  margin-bottom: 12px;
  font-weight: 800;
}

.resource-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 0;
}

.resource-card-cta {
  margin-top: auto;
  padding-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border-top: 1px solid rgba(30,41,59,0.08);
  line-height: 1.4;
}

.resource-card-cta::after {
  content: '';
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.resource-card-link:hover .resource-card-cta,
.resource-card-link:focus-visible .resource-card-cta {
  color: var(--red);
}

.resource-card-link:hover h3,
.resource-card-link:focus-visible h3 {
  color: var(--red);
}

.resources-page {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding-bottom: 48px;
}

.resources-intro,
.resources-page-cta {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}

.resources-intro {
  padding-top: 56px;
}

.resource-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.resource-chip-row span {
  background: rgba(30,41,59,0.06);
  border: 1px solid rgba(30,41,59,0.08);
  padding: 8px 12px;
  color: var(--navy);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.resources-intro .resource-chip-row {
  gap: 2px;
  margin-top: 12px;
}

.resources-intro .resource-chip-row span {
  padding: 2px 4px;
  font-size: clamp(0.34rem, 0.3rem + 0.1vw, 0.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
  white-space: nowrap;
}

.resources-grid-large {
  margin-top: 28px;
}

.resources-network {
  max-width: 1100px;
  margin: 42px auto 0;
  padding-left: 60px;
  padding-right: 60px;
}

.resources-network-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.resources-network-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 390px;
}

.resources-network-legend span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: 0 14px 30px rgba(30,41,59,0.06);
  color: var(--navy);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.resources-network-shell {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}

.resources-network-map-panel,
.resources-network-detail {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: 0 24px 54px rgba(30,41,59,0.08);
}

.resources-network-map-panel {
  background:
    radial-gradient(circle at top left, rgba(30,41,59,0.1), transparent 42%),
    radial-gradient(circle at bottom right, rgba(217,115,78,0.08), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,249,255,0.94) 100%);
}

.resources-network-detail {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,250,255,0.96) 100%);
  padding: 28px 24px;
}

.resources-network-map-panel--full {
  width: 100%;
}

.resources-network-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 24px 0;
}

.resources-network-toolbar p {
  max-width: 540px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

.resources-network-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.resources-network-zoom-indicator {
  min-width: 76px;
  text-align: center;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(30,41,59,0.06);
  border: 1px solid rgba(30,41,59,0.08);
  color: var(--navy);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

.resources-network-reset {
  appearance: none;
  border: 1px solid rgba(30,41,59,0.12);
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 11px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.resources-network-reset:hover,
.resources-network-reset:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(217,115,78,0.24);
  box-shadow: 0 14px 28px rgba(30,41,59,0.08);
  color: var(--red);
}

.resources-network-map {
  --resource-mindmap-x: 0px;
  --resource-mindmap-y: 0px;
  --resource-mindmap-scale: 1;
  position: relative;
  margin: 18px;
  height: 700px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(30,41,59,0.08);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.96), transparent 34%),
    radial-gradient(circle at 78% 16%, rgba(217,115,78,0.08), transparent 24%),
    radial-gradient(circle at 84% 84%, rgba(30,41,59,0.08), transparent 28%),
    linear-gradient(180deg, rgba(247,248,255,0.96) 0%, rgba(240,243,251,0.96) 100%);
  perspective: 1600px;
  perspective-origin: 50% 50%;
  cursor: grab;
  touch-action: none;
}

.resources-network-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,41,59,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,41,59,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.9;
}

.resources-network-map::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.08), rgba(30,41,59,0.18)),
    linear-gradient(180deg, rgba(30,41,59,0.08) 0%, rgba(30,41,59,0.14) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.resources-network-map.has-expanded::after {
  opacity: 1;
}

.resources-network-map.is-dragging {
  cursor: grabbing;
}

.resources-network-svg,
.resources-network-stage {
  position: absolute;
  left: 0;
  top: 0;
  width: 1280px;
  height: 760px;
  transform: translate(var(--resource-mindmap-x), var(--resource-mindmap-y)) scale(var(--resource-mindmap-scale));
  transform-origin: 0 0;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.26s ease;
}

.resources-network-map.is-dragging .resources-network-svg,
.resources-network-map.is-dragging .resources-network-stage {
  transition: none;
}

.resources-network-svg {
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

.resources-network-stage {
  z-index: 2;
}

.resources-network-edge {
  stroke: rgba(30,41,59,0.12);
  stroke-width: 2.5;
  transition: opacity 0.24s ease, stroke 0.24s ease, stroke-width 0.24s ease;
}

.resources-network-edge.is-hub-link {
  stroke: rgba(107,144,128,0.34);
  stroke-width: 2.75;
  opacity: 1;
}

.resources-network-edge.is-secondary-link {
  opacity: 0;
}

.resources-network-edge.is-related {
  stroke: rgba(30,41,59,0.32);
  opacity: 1;
}

.resources-network-edge.is-active {
  stroke: rgba(217,115,78,0.66);
  stroke-width: 3.8;
  opacity: 1;
}

.resources-network-edge.is-muted {
  opacity: 0;
}

.resources-network-edge.is-occluded {
  opacity: 0;
}

.resources-network-node {
  --node-accent: var(--navy);
  --node-soft: rgba(30,41,59,0.06);
  --node-depth-opacity: 1;
  --node-saturate: 1;
  --node-blur: 0px;
  --node-scale: 1;
  --node-float-y: 0px;
  --node-tilt-x: 0deg;
  --node-tilt-y: 0deg;
  --node-pop-z: 0px;
  appearance: none;
  position: absolute;
  transform:
    translate(-50%, -50%)
    translate3d(0, var(--node-float-y), var(--node-pop-z))
    scale(var(--node-scale))
    rotateX(var(--node-tilt-x))
    rotateY(var(--node-tilt-y));
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: left, top, transform, opacity, filter;
  width: 168px;
  min-height: 76px;
  padding: 16px 14px;
  border: 1px solid rgba(162, 226, 255, 0.36);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(31, 180, 240, 0.96) 0%, rgba(17, 126, 209, 0.98) 46%, rgba(12, 74, 151, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 18px 34px rgba(7, 58, 126, 0.22);
  text-align: center;
  cursor: pointer;
  opacity: var(--node-depth-opacity);
  filter: saturate(var(--node-saturate)) blur(var(--node-blur));
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.resources-network-node:hover,
.resources-network-node:focus-visible {
  transform:
    translate(-50%, calc(-50% - 4px))
    translate3d(0, var(--node-float-y), calc(var(--node-pop-z) + 6px))
    scale(calc(var(--node-scale) + 0.03))
    rotateX(var(--node-tilt-x))
    rotateY(var(--node-tilt-y));
  border-color: rgba(201, 241, 255, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    0 24px 44px rgba(6, 56, 122, 0.28);
}

.resources-network-node:focus-visible {
  outline: 2px solid rgba(214, 245, 255, 0.72);
  outline-offset: 3px;
}

.resources-network-node.is-hub {
  width: 160px;
  min-height: 160px;
  padding: 0;
  border-radius: 50%;
  cursor: grab;
  border: 1px solid rgba(255, 214, 176, 0.56);
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.2) 13%, rgba(255,255,255,0.08) 24%, transparent 40%),
    radial-gradient(circle at 54% 45%, rgba(255, 206, 133, 0.24), transparent 62%),
    radial-gradient(circle at 66% 70%, rgba(255, 111, 0, 0.28), transparent 42%),
    linear-gradient(150deg, #FFA52F 0%, #FF9518 38%, #FF7A00 74%, #F25B00 100%);
  box-shadow:
    inset -20px -26px 48px rgba(180, 73, 0, 0.28),
    inset 22px 18px 38px rgba(255,255,255,0.18),
    0 34px 70px rgba(255, 122, 0, 0.28);
  overflow: visible;
  isolation: isolate;
  animation:
    resources-network-sphere-pulse 5.8s ease-in-out infinite,
    resources-network-sphere-float 6.6s ease-in-out infinite;
}

.resources-network-node.is-hub.is-rotating {
  cursor: grabbing;
}

.resources-network-node.is-hub::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 185, 94, 0.34) 0%, rgba(255, 132, 0, 0.28) 28%, rgba(255, 132, 0, 0.12) 52%, transparent 72%);
  filter: blur(8px);
  opacity: 0.88;
  pointer-events: none;
  z-index: -2;
  animation: resources-network-sphere-halo 4.8s ease-in-out infinite;
}

.resources-network-node.is-hub::after {
  content: '';
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 176, 77, 0.22) 0%, rgba(255, 132, 0, 0.12) 34%, rgba(255, 132, 0, 0.04) 58%, transparent 74%);
  filter: blur(14px);
  opacity: 0.74;
  pointer-events: none;
  z-index: -3;
  animation: resources-network-sphere-halo-outer 6.4s ease-in-out infinite;
}

.resources-network-node.group-core {
  --node-accent: #1E293B;
  --node-soft: rgba(30,41,59,0.08);
}

.resources-network-node.group-justice {
  --node-accent: #6B9080;
  --node-soft: rgba(107,144,128,0.08);
}

.resources-network-node.group-social {
  --node-accent: #6B9080;
  --node-soft: rgba(107,144,128,0.08);
}

.resources-network-node.group-proof {
  --node-accent: #B88053;
  --node-soft: rgba(184,128,83,0.08);
}

.resources-network-node.group-violence {
  --node-accent: #C56A49;
  --node-soft: rgba(197,106,73,0.08);
}

.resources-network-node.group-family {
  --node-accent: #7A9186;
  --node-soft: rgba(122,145,134,0.08);
}

.resources-network-node.group-health {
  --node-accent: #5E8B7E;
  --node-soft: rgba(94,139,126,0.08);
}

.resources-network-node.group-support {
  --node-accent: #AE744A;
  --node-soft: rgba(174,116,74,0.08);
}

.resources-network-node.is-selected {
  border-color: rgba(207, 243, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.26),
    0 24px 44px rgba(6, 56, 122, 0.3);
}

.resources-network-node.is-expanded {
  opacity: 0;
  pointer-events: none;
}

.resources-network-node.is-selected,
.resources-network-node.is-related {
  opacity: 1;
}

.resources-network-node.is-behind-hub {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  box-shadow: none;
}

.resources-network-node.is-muted {
  opacity: 0.28;
}

.resources-network-node-kicker {
  display: none;
}

.resources-network-node-label {
  display: block;
  color: #ffffff;
  font-size: 0.94rem;
  line-height: 1.42;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.resources-network-article-link,
.resources-network-related {
  display: block;
  padding: 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(30,41,59,0.08);
  background: rgba(255,255,255,0.86);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  appearance: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.resources-network-article-link:hover,
.resources-network-article-link:focus-visible,
.resources-network-related:hover,
.resources-network-related:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(30,41,59,0.08);
  border-color: rgba(217,115,78,0.16);
  background: rgba(255,255,255,0.98);
}

.resources-network-article-link strong,
.resources-network-related strong {
  display: block;
  color: var(--navy);
  font-size: 0.86rem;
  line-height: 1.5;
}

.resources-network-article-link span,
.resources-network-related span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.resources-network-preview {
  position: absolute;
  z-index: 6;
  max-width: 280px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(30,41,59,0.1);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 26px 60px rgba(30,41,59,0.16);
  pointer-events: none;
}

.resources-network-preview h3 {
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.35;
}

.resources-network-preview p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.68;
}

.resources-network-expanded {
  position: absolute;
  z-index: 7;
  left: 50%;
  top: 50%;
  width: min(420px, calc(100% - 36px));
  max-height: calc(100% - 36px);
  overflow: auto;
  transform: translate(-50%, -50%);
  padding: 24px 22px 22px;
  border-radius: 26px;
  border: 1px solid rgba(30,41,59,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.99) 0%, rgba(249,250,255,0.98) 100%);
  box-shadow: 0 34px 80px rgba(30,41,59,0.22);
}

.resources-network-expanded::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

.resources-network-expanded-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.resources-network-expanded-kicker {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.resources-network-expanded h3 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.25;
}

.resources-network-expanded-close {
  appearance: none;
  border: 1px solid rgba(30,41,59,0.08);
  background: rgba(30,41,59,0.04);
  color: var(--navy);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  flex: 0 0 auto;
}

.resources-network-expanded-body {
  margin-top: 16px;
}

.resources-network-expanded-body > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.resources-network-expanded-group {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.resources-network-expanded-label {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.resources-network-expanded-list {
  display: grid;
  gap: 10px;
}

.resources-network-node.is-hub .resources-network-node-label {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 0.96rem;
  line-height: 1.3;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

@property --node-float-y {
  syntax: '<length>';
  inherits: false;
  initial-value: 0px;
}

@keyframes resources-network-sphere-pulse {
  0%, 100% {
    box-shadow:
      inset -20px -26px 48px rgba(180, 73, 0, 0.26),
      inset 22px 18px 38px rgba(255,255,255,0.18),
      0 0 0 2px rgba(255, 186, 120, 0.08),
      0 26px 56px rgba(255, 122, 0, 0.2),
      0 0 38px rgba(255, 149, 24, 0.3);
    filter: drop-shadow(0 14px 24px rgba(255, 122, 0, 0.14));
  }
  50% {
    box-shadow:
      inset -24px -30px 54px rgba(180, 73, 0, 0.32),
      inset 24px 20px 44px rgba(255,255,255,0.22),
      0 0 0 4px rgba(255, 194, 132, 0.12),
      0 34px 72px rgba(255, 122, 0, 0.28),
      0 0 56px rgba(255, 149, 24, 0.48);
    filter: drop-shadow(0 20px 34px rgba(255, 122, 0, 0.22));
  }
}

@keyframes resources-network-sphere-float {
  0%, 100% {
    --node-float-y: 2px;
  }
  50% {
    --node-float-y: -8px;
  }
}

@keyframes resources-network-sphere-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes resources-network-sphere-halo {
  0%, 100% {
    opacity: 0.64;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.96;
    transform: scale(1.08);
  }
}

@keyframes resources-network-sphere-halo-outer {
  0%, 100% {
    opacity: 0.38;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.62;
    transform: scale(1.12);
  }
}

.resources-page-cta {
  margin-top: 40px;
}

.resources-bottom-cta {
  background:
    linear-gradient(180deg, rgba(30,41,59,0.03) 0%, rgba(30,41,59,0.07) 100%),
    var(--white);
  border-top: 1px solid rgba(30,41,59,0.08);
  padding: 40px 0 96px;
}

.resources-bottom-cta .resources-page-cta {
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.resources-page-cta > .section-label,
.resources-page-cta .services-page-cta-inner .section-label {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  box-shadow: none;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
  position: relative;
  z-index: 2;
}

.page-hero-link {
  color: rgba(30,41,59,0.8);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  font-weight: 700;
}

.form-feedback {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-left: 4px solid transparent;
  font-size: 0.86rem;
  line-height: 1.6;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback.is-success {
  background: rgba(24, 135, 84, 0.08);
  border-color: #188754;
  color: #13653f;
}

.form-feedback.is-error {
  background: rgba(225, 0, 15, 0.08);
  border-color: var(--gold);
  color: #8f0f19;
}

.form-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.mobile-callbar {
  display: none;
}

.article-hero .section-title {
  max-width: 900px;
}

.article-breadcrumb {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
}

.article-breadcrumb a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}

.article-meta {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  color: var(--text-on-dark-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-keywords {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.article-keywords-label {
  color: var(--text-on-dark-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.article-keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-keyword-row span {
  padding: 8px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.article-page {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding-top: 72px;
}

.article-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
}

.article-content,
.article-sidebar-card {
  background: var(--white);
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: var(--shadow-soft);
}

.article-content {
  padding: 38px 36px;
}

.article-sidebar {
  display: grid;
  gap: 18px;
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.article-sidebar-card {
  padding: 24px 22px;
}

.article-summary {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 30px;
}

.article-figure {
  margin: 0 0 30px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(30,41,59,0.04), rgba(217,115,78,0.05));
  border: 1px solid rgba(30,41,59,0.08);
}

.article-figure img {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}

.article-figure--wide img {
  max-width: 760px;
}

.article-figure figcaption {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.article-graphic {
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 28px 24px;
  border: 1px dashed rgba(30,41,59,0.18);
  background: rgba(255,255,255,0.76);
  color: var(--text-muted);
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.7;
}

.article-journey {
  display: grid;
  gap: 22px;
}

.article-journey-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.article-journey-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.article-journey-top h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.3;
}

.article-journey-hint {
  max-width: 320px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.65;
  text-align: right;
}

.article-journey-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30,41,59,0.1);
  background:
    radial-gradient(circle at top left, rgba(217,115,78,0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(30,41,59,0.11), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(244,247,255,0.98));
  box-shadow: 0 18px 34px rgba(30,41,59,0.06);
}

.article-journey-visual-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 24px 18px;
  align-items: stretch;
}

.article-journey-visual--timeline .article-journey-visual-track {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 30px;
}

.article-journey-visual-segment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  align-items: center;
  min-width: 0;
}

.article-journey-visual-segment:last-child {
  grid-template-columns: minmax(0, 1fr);
}

.article-journey-visual--timeline .article-journey-visual-segment,
.article-journey-visual--timeline .article-journey-visual-segment:last-child {
  grid-template-columns: minmax(0, 1fr);
}

.article-journey-visual-link {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30,41,59,0.18), rgba(217,115,78,0.24));
  opacity: 0.28;
  transform: scaleX(0.18);
  transform-origin: left center;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.article-journey-visual-link.is-revealed {
  opacity: 1;
  transform: scaleX(1);
}

.article-journey-visual-link.is-active {
  background: linear-gradient(90deg, #1E293B, #D9734E);
}

.article-journey-visual--timeline .article-journey-visual-link {
  display: none;
}

.article-journey-visual-node {
  position: relative;
  display: none;
  gap: 10px;
  align-content: start;
  min-width: 0;
  min-height: 148px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(30,41,59,0.12);
  background: rgba(255,255,255,0.88);
  text-align: left;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: transform 0.32s ease, opacity 0.32s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.article-journey-visual-node.is-revealed {
  display: grid;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: journeyNodeIn 0.32s ease;
}

.article-journey-visual-node.is-active {
  border-color: rgba(30,41,59,0.24);
  background: rgba(255,255,255,0.98);
  box-shadow: 0 18px 34px rgba(30,41,59,0.08);
}

.article-journey-visual-node.is-complete:not(.is-active) {
  background: rgba(255,255,255,0.94);
}

.article-journey-visual-node:focus-visible {
  outline: 2px solid rgba(217,115,78,0.5);
  outline-offset: 2px;
}

.article-journey-visual-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1E293B, #D9734E);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 18px rgba(30,41,59,0.12);
}

.article-journey-visual-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.article-journey-visual-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.article-journey-visual-title {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.article-journey-visual-surface {
  position: relative;
  min-height: 420px;
  padding: 24px;
  isolation: isolate;
}

.article-journey-visual-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(250px, 58%);
  padding: 22px 20px;
  border: 1px solid rgba(30,41,59,0.12);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 24px 46px rgba(30,41,59,0.08);
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.article-journey-visual-hub-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-journey-visual-hub strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.45;
}

.article-journey-visual-node--floating {
  position: absolute;
  left: var(--node-x);
  top: var(--node-y);
  width: clamp(146px, 18vw, 180px);
  max-width: calc(100% - 56px);
  min-height: 118px;
  transform: translate(-50%, -50%) translateY(16px);
  z-index: 3;
}

.article-journey-visual-node--floating.is-revealed {
  transform: translate(-50%, -50%) translateY(0);
}

.article-journey-visual-connector {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--connector-length);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30,41,59,0.16), rgba(217,115,78,0.26));
  opacity: 0;
  transform-origin: left center;
  transform: translateY(-50%) rotate(var(--connector-angle));
  transition: opacity 0.3s ease, background 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.article-journey-visual-connector.is-revealed {
  opacity: 1;
}

.article-journey-visual-connector.is-active {
  background: linear-gradient(90deg, #1E293B, #D9734E);
}

.article-journey-visual--constellation .article-journey-visual-surface,
.article-journey-visual--cycle .article-journey-visual-surface {
  min-height: 470px;
}

.article-journey-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 20px;
}

.article-journey-rail {
  position: relative;
  display: grid;
  gap: 12px;
  padding-left: 10px;
}

.article-journey-rail::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, rgba(30,41,59,0.2), rgba(217,115,78,0.22));
}

.article-journey-node {
  position: relative;
  z-index: 1;
  display: none;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(30,41,59,0.09);
  background: rgba(30,41,59,0.78);
  text-align: left;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: transform 0.32s ease, opacity 0.32s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.article-journey-node.is-revealed {
  display: grid;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  animation: journeyNodeIn 0.32s ease;
}

.article-journey-node.is-active {
  border-color: rgba(30,41,59,0.24);
  box-shadow: 0 18px 34px rgba(30,41,59,0.08);
  background: rgba(255,255,255,0.96);
}

.article-journey-node.is-complete:not(.is-active) {
  background: rgba(255,255,255,0.9);
}

.article-journey-node:focus-visible {
  outline: 2px solid rgba(217,115,78,0.5);
  outline-offset: 2px;
}

.article-journey-shape-wrap {
  position: relative;
  width: 44px;
  height: 44px;
}

.article-journey-shape {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1E293B, #314255);
  box-shadow: 0 10px 20px rgba(30,41,59,0.16);
}

.article-journey-shape--circle {
  border-radius: 50%;
}

.article-journey-shape--square {
  border-radius: 12px;
}

.article-journey-shape--triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-radius: 0;
}

.article-journey-shape--diamond {
  border-radius: 10px;
  transform: rotate(45deg);
}

.article-journey-shape--pill {
  border-radius: 999px;
}

.article-journey-shape-wrap::after {
  content: attr(data-step);
  position: absolute;
  right: -7px;
  bottom: -7px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 999px;
  background: #D9734E;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}

.article-journey-node-copy {
  min-width: 0;
}

.article-journey-node-label {
  display: block;
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-journey-node-title {
  display: block;
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 700;
}

.article-journey-panel {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.article-journey-progress {
  position: relative;
  height: 7px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(30,41,59,0.08);
}

.article-journey-progress-bar {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #1E293B, #D9734E);
  transition: width 0.28s ease;
}

.article-journey-card {
  border: 1px solid rgba(30,41,59,0.08);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 34px rgba(30,41,59,0.06);
  overflow: hidden;
}

.article-journey-card-inner {
  padding: 24px 24px 22px;
}

.article-journey-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-journey-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D9734E;
}

.article-journey-step {
  display: none;
}

.article-journey-step.is-active {
  display: block;
  animation: journeyStepIn 0.28s ease;
}

@keyframes journeyStepIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes journeyNodeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.article-journey-step h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.35;
}

.article-journey-step p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
}

.article-journey-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
}

.article-journey-points li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.article-journey-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.article-journey-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.article-journey-control-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.article-journey-button {
  border: 1px solid rgba(30,41,59,0.14);
  background: #ffffff;
  color: var(--navy);
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.article-journey-button:hover:not(:disabled) {
  background: rgba(30,41,59,0.04);
  border-color: rgba(30,41,59,0.22);
  transform: translateY(-1px);
}

.article-journey-button.is-primary {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}

.article-journey-button.is-primary:hover:not(:disabled) {
  background: #314255;
}

.article-journey-button:disabled {
  opacity: 0.46;
  cursor: not-allowed;
  transform: none;
}

.article-journey-step-counter {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.article-content h2 {
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.3;
  margin: 34px 0 14px;
  font-weight: 800;
}

.article-content p,
.article-sidebar-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.85;
  font-weight: 300;
}

.article-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.article-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.7;
  font-size: 0.92rem;
}

.article-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.article-sidebar-card h3,
.article-cta-box h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.article-sidebar-card a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

.article-cta-box {
  margin-top: 34px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(30,41,59,0.06), rgba(217,115,78,0.06));
  border: 1px solid rgba(30,41,59,0.08);
}

.article-cta-box p {
  margin-bottom: 20px;
}

.article-strategic-support {
  margin-top: 34px;
  padding: 26px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(246,247,251,0.98) 100%);
  border: 1px solid rgba(30,41,59,0.1);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.article-strategic-support::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

.article-strategic-kicker {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.article-strategic-support h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.article-strategic-intro,
.article-strategic-note {
  color: var(--text-muted);
}

.article-strategic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.article-strategic-card {
  display: grid;
  gap: 8px;
  padding: 16px 16px 15px;
  background: rgba(30,41,59,0.04);
  border: 1px solid rgba(30,41,59,0.08);
}

.article-strategic-card strong {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-strategic-card span {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.7;
}

.usefulness-vote {
  margin-top: 34px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(246,247,251,0.98) 100%);
  border: 1px solid rgba(30,41,59,0.1);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.usefulness-vote::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

.usefulness-vote-kicker {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.usefulness-vote h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.usefulness-vote p {
  color: var(--text-muted);
}

.usefulness-vote-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.usefulness-vote-button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(30,41,59,0.14);
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.usefulness-vote-button:hover {
  transform: translateY(-1px);
  border-color: rgba(30,41,59,0.28);
}

.usefulness-vote-button.is-active[data-usefulness-choice="yes"] {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.usefulness-vote-button.is-active[data-usefulness-choice="no"] {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.usefulness-vote-status {
  margin-top: 14px;
  min-height: 1.6em;
  font-size: 0.92rem;
  line-height: 1.7;
}

.usefulness-vote-status a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

.resources-feedback {
  max-width: 1100px;
  margin: 34px auto 0;
  padding-left: 60px;
  padding-right: 60px;
}

.resources-feedback .usefulness-vote {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .hero-layout,
  .problem-layout,
  .founder-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .review-submit-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .article-journey-top,
  .article-journey-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .article-journey-hint {
    max-width: none;
    text-align: left;
  }

  .article-journey-visual-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-journey-visual-surface {
    min-height: 500px;
  }

  .article-journey-shell {
    grid-template-columns: 1fr;
  }

  .article-strategic-grid {
    grid-template-columns: 1fr;
  }

  .resources-feedback {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 86px;
  }

  .hero-layout,
  .problem-layout,
  .founder-grid,
  .article-layout {
    gap: 24px;
  }

  .hero-notes,
  .signal-chips,
  .resource-chip-row,
  .article-keyword-row {
    gap: 8px;
  }

  .hero-panel,
  .founder-card,
  .founder-manifesto,
  .review-submit-copy {
    padding: 28px 24px;
  }

  .hero-panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-panel-metrics,
  .founder-metrics {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .pillar-grid,
  .case-grid,
  .testimonial-grid,
  .resource-grid,
  .review-carousel-track,
  .reviews-page-grid,
  .reviews-summary {
    grid-template-columns: 1fr;
  }

  .resources-intro,
  .resources-network,
  .resources-page-cta,
  .reviews-page-inner {
    padding-left: 28px;
    padding-right: 28px;
  }

  .resources-network-heading,
  .resources-network-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .resources-network-toolbar-actions {
    justify-content: flex-start;
  }

  .resources-network-legend {
    justify-content: flex-start;
    max-width: none;
  }

  .resources-network-shell {
    grid-template-columns: 1fr;
  }

  .resources-network-map {
    height: 560px;
    margin: 14px;
  }

  .resources-network-node {
    width: 150px;
    min-height: 70px;
    padding: 14px 12px;
  }

  .resources-network-node.is-hub {
    width: 142px;
    min-height: 142px;
  }

  .resources-network-node-label {
    font-size: 0.88rem;
  }

  .resources-network-preview {
    max-width: 220px;
  }

  .resources-network-expanded {
    width: min(380px, calc(100% - 26px));
  }

  .resources-bottom-cta .resources-page-cta {
    padding-left: 28px;
    padding-right: 28px;
  }

  .review-submit-block .bulletin-form {
    padding: 30px 24px;
  }

  .testimonial-section-head,
  .review-carousel-toolbar {
    align-items: flex-start;
  }

  .section-cta-row,
  .page-hero-actions {
    align-items: flex-start;
  }

  .text-link,
  .page-hero-link {
    font-size: 0.8rem;
  }

  .article-content {
    padding: 30px 24px;
  }

  .article-sidebar-card {
    padding: 22px 20px;
  }

  .usefulness-vote {
    padding: 22px 20px;
  }

  .usefulness-vote-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .article-journey-card-inner {
    padding: 20px 18px 18px;
  }

  .article-journey-visual-track {
    grid-template-columns: 1fr;
  }

  .article-journey-visual-segment {
    grid-template-columns: 1fr;
  }

  .article-journey-visual-link {
    height: 18px;
    width: 2px;
    margin: 0 auto;
    transform: scaleY(0.2);
    transform-origin: top center;
  }

  .article-journey-visual-link.is-revealed {
    transform: scaleY(1);
  }

  .article-journey-visual-node {
    min-height: 0;
  }

  .article-journey-visual-surface {
    display: grid;
    gap: 14px;
    min-height: 0;
    padding: 20px 18px;
  }

  .article-journey-visual-hub {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: none;
  }

  .article-journey-visual-node--floating {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    transform: translateY(16px);
  }

  .article-journey-visual-node--floating.is-revealed {
    transform: translateY(0);
  }

  .article-journey-visual-connector {
    display: none;
  }

  .article-journey-node {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 11px;
  }

  .article-journey-shape,
  .article-journey-shape-wrap {
    width: 40px;
    height: 40px;
  }

  .article-journey-rail::before {
    left: 29px;
  }

  .mobile-callbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    min-height: 54px;
    padding: 12px 18px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    text-align: center;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    z-index: 250;
    box-shadow: 0 20px 40px rgba(217,115,78,0.32);
  }
}

/* =========================================
   FINAL READABILITY + MOTION OVERRIDES
   ========================================= */
body {
  background:
    radial-gradient(circle at 8% 10%, rgba(107,144,128,0.16) 0%, transparent 24%),
    radial-gradient(circle at 94% 16%, rgba(217,115,78,0.1) 0%, transparent 18%),
    radial-gradient(circle at 82% 82%, rgba(107,144,128,0.08) 0%, transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, #f8f8f5 46%, #f2f5ef 100%);
}

.hero::before,
.page-hero::before,
.article-hero::before {
  animation: ambientDrift 18s ease-in-out infinite alternate;
  transform-origin: center;
}

.page-hero,
.article-hero {
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at 10% 16%, rgba(107,144,128,0.2) 0%, transparent 24%),
    radial-gradient(circle at 90% 20%, rgba(217,115,78,0.14) 0%, transparent 20%),
    linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,247,242,0.98) 52%, rgba(239,243,239,0.98) 100%);
}

.page-hero > .section-title,
.article-hero > .section-title {
  color: var(--navy);
  max-width: min(100%, 780px);
}

.page-hero > p,
.article-hero > p,
.article-breadcrumb,
.article-meta,
.article-keywords {
  width: fit-content;
  max-width: min(100%, 860px);
  margin-top: 0;
  padding: 14px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.78) 100%);
  border: 1px solid rgba(30,41,59,0.08);
  box-shadow: 0 16px 34px rgba(30,41,59,0.07);
  backdrop-filter: blur(12px);
}

.page-hero > p,
.article-hero > p {
  color: var(--text);
}

.article-breadcrumb,
.article-meta,
.article-keywords-label {
  color: var(--navy-light);
}

.article-breadcrumb a {
  color: var(--navy);
}

.article-keyword-row span {
  background: rgba(107,144,128,0.12);
  border: 1px solid rgba(107,144,128,0.18);
  color: var(--navy);
}

.hero-notes span,
.signal-chips span,
.overview-point,
.service-tag,
.service-quick-tags span,
.service-graphic-chips span,
.resource-chip-row span,
.review-submit-point,
.national-item,
.review-timeline span {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.74) 100%);
  border: 1px solid rgba(107,144,128,0.18);
  box-shadow: 0 10px 24px rgba(30,41,59,0.05);
  color: var(--navy);
}

.national-banner {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.74) 100%);
  border-top: 1px solid rgba(30,41,59,0.08);
  border-bottom: 1px solid rgba(30,41,59,0.08);
  backdrop-filter: blur(12px);
}

.problem-card,
.pillar-card,
.service-quick,
.service-full,
.resource-card,
.case-card,
.testimonial-card,
.review-card,
.review-stat,
.services-overview-card,
.contact-card,
.founder-card,
.founder-manifesto,
.review-carousel-viewport {
  transition: transform 0.35s var(--motion-smooth), box-shadow 0.35s var(--motion-smooth), border-color 0.35s var(--motion-smooth), background 0.35s var(--motion-smooth);
}

.problem-card:hover,
.pillar-card:hover,
.service-quick:hover,
.service-full:hover,
.resource-card:hover,
.case-card:hover,
.testimonial-card:hover,
.review-card:hover,
.review-stat:hover,
.services-overview-card:hover,
.contact-card:hover,
.founder-card:hover,
.founder-manifesto:hover,
.review-carousel-viewport:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 62px rgba(30,41,59,0.12);
  border-color: rgba(107,144,128,0.26);
}

.fade-up {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.72s var(--motion-smooth),
    transform 0.72s var(--motion-smooth),
    filter 0.72s var(--motion-smooth);
  transition-delay: var(--reveal-delay, 0ms);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (max-width: 900px) {
  .page-hero > p,
  .article-hero > p,
  .article-breadcrumb,
  .article-meta,
  .article-keywords {
    width: 100%;
    padding: 16px 16px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .how-steps::after,
  .fade-up,
  .fade-up.visible {
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }

  .resources-network-node.is-hub,
  .resources-network-node.is-hub::before,
  .resources-network-node.is-hub::after {
    animation: none !important;
  }

  .resources-network-node.is-hub {
    --node-float-y: 0px;
  }
}

/* =========================================
   FINAL CARD DEPTH OVERRIDES
   ========================================= */
:root {
  --card-deep: linear-gradient(155deg, rgba(30,41,59,0.97) 0%, rgba(35,52,70,0.98) 58%, rgba(56,80,88,0.96) 100%);
  --card-deep-alt: linear-gradient(155deg, rgba(47,69,80,0.97) 0%, rgba(94,139,126,0.94) 100%);
  --card-deep-soft: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  --card-border-dark: rgba(255,255,255,0.12);
  --card-shadow-dark: 0 28px 64px rgba(15,23,42,0.28);
  --card-text: rgba(249,249,247,0.96);
  --card-text-soft: rgba(249,249,247,0.82);
}

.hero-copy,
.page-hero > p,
.article-hero > p,
.article-breadcrumb,
.article-meta,
.article-keywords,
:is(
  .problem-card,
  .pillar-card,
  .service-quick,
  .service-full,
  .resource-card,
  .case-card,
  .testimonial-card,
  .review-card,
  .review-stat,
  .services-overview-card,
  .contact-card,
  .contact-info-block,
  .bulletin-form,
  .review-submit-copy,
  .reviews-page-note,
  .article-content,
  .article-sidebar-card,
  .article-cta-box,
  .article-strategic-support,
  .usefulness-vote,
  .founder-card,
  .founder-manifesto,
  .service-full-aside,
  .service-credential-panel,
  .service-credential-card,
  .resources-network-related-card,
  .resources-network-preview,
  .resources-network-expanded,
  .resources-page-cta,
  .services-page-cta-inner,
  .review-carousel-viewport
) {
  background: var(--card-deep);
  border-color: var(--card-border-dark);
  box-shadow: var(--card-shadow-dark);
  color: var(--card-text-soft);
}

:is(
  .review-stat,
  .contact-info-block,
  .service-full-aside,
  .service-credential-card,
  .resources-network-related-card,
  .resources-page-cta,
  .services-page-cta-inner
) {
  background: var(--card-deep-alt);
}

.hero-copy .hero-title,
.hero-copy .hero-panel-kicker,
.hero-copy .hero-panel-phone,
:is(
  .problem-card,
  .pillar-card,
  .service-quick,
  .service-full,
  .resource-card,
  .case-card,
  .testimonial-card,
  .review-card,
  .review-stat,
  .services-overview-card,
  .contact-card,
  .contact-info-block,
  .bulletin-form,
  .review-submit-copy,
  .reviews-page-note,
  .article-content,
  .article-sidebar-card,
  .article-cta-box,
  .article-strategic-support,
  .usefulness-vote,
  .founder-card,
  .founder-manifesto,
  .service-full-aside,
  .service-credential-panel,
  .service-credential-card,
  .resources-network-related-card,
  .resources-network-preview,
  .resources-network-expanded,
  .resources-page-cta,
  .services-page-cta-inner,
  .review-carousel-viewport
) :where(h2, h3, h4, h5, strong, label, legend, .section-title) {
  color: var(--card-text);
}

.hero-copy .hero-title em {
  color: #d8e7df;
  text-decoration-color: rgba(217,115,78,0.42);
}

.hero-panel {
  background: linear-gradient(160deg, rgba(30,41,59,0.98) 0%, rgba(37,54,72,0.99) 56%, rgba(94,139,126,0.9) 100%);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 34px 74px rgba(15,23,42,0.34);
}

.hero-panel-head {
  border-bottom-color: rgba(255,255,255,0.14);
}

.hero-panel-kicker,
.hero-panel-item span,
.hero-panel-metrics span {
  color: rgba(249,249,247,0.88);
}

.hero-panel-phone,
.hero-panel-item strong,
.hero-panel-metrics strong {
  color: #ffffff;
}

.hero-panel-metrics div {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}

.hero-copy .hero-sub,
.hero-copy .hero-label,
.hero-copy .hero-notes span,
.page-hero > p,
.article-hero > p,
.article-breadcrumb,
.article-meta,
.article-keywords-label,
:is(
  .problem-card,
  .pillar-card,
  .service-quick,
  .service-full,
  .resource-card,
  .case-card,
  .testimonial-card,
  .review-card,
  .review-stat,
  .services-overview-card,
  .contact-card,
  .contact-info-block,
  .bulletin-form,
  .review-submit-copy,
  .reviews-page-note,
  .article-content,
  .article-sidebar-card,
  .article-cta-box,
  .article-strategic-support,
  .usefulness-vote,
  .founder-card,
  .founder-manifesto,
  .service-full-aside,
  .service-credential-panel,
  .service-credential-card,
  .resources-network-related-card,
  .resources-network-preview,
  .resources-network-expanded,
  .resources-page-cta,
  .services-page-cta-inner,
  .review-carousel-viewport
) :where(p, li, small, .section-intro, .form-subtitle, .review-submit-rule, .overview-note, .review-card-date, .review-card-meta, .review-stat span, .contact-row-body p, .contact-row-body a, .contact-info-item p, .contact-info-item a, .service-full-list li, .service-full-callout, .service-credential-card p, .article-summary, .services-page-cta-note) {
  color: var(--card-text-soft);
}

.hero-copy .hero-label,
:is(
  .problem-card,
  .pillar-card,
  .service-quick,
  .service-full,
  .resource-card,
  .case-card,
  .testimonial-card,
  .review-card,
  .review-stat,
  .services-overview-card,
  .contact-card,
  .contact-info-block,
  .bulletin-form,
  .review-submit-copy,
  .reviews-page-note,
  .article-content,
  .article-sidebar-card,
  .article-cta-box,
  .article-strategic-support,
  .usefulness-vote,
  .founder-card,
  .founder-manifesto,
  .service-full-aside,
  .service-credential-panel,
  .service-credential-card,
  .resources-network-related-card,
  .resources-network-preview,
  .resources-network-expanded,
  .resources-page-cta,
  .services-page-cta-inner,
  .review-carousel-viewport
) a:not(.btn-primary):not(.btn-secondary):not(.btn-outline):not(.form-submit):not(.resource-card-link) {
  color: var(--card-text);
}

:is(
  .problem-card,
  .pillar-card,
  .service-quick,
  .service-full,
  .resource-card,
  .case-card,
  .testimonial-card,
  .review-card,
  .review-stat,
  .services-overview-card,
  .contact-card,
  .contact-info-block,
  .bulletin-form,
  .review-submit-copy,
  .reviews-page-note,
  .article-content,
  .article-sidebar-card,
  .article-cta-box,
  .article-strategic-support,
  .usefulness-vote,
  .founder-card,
  .founder-manifesto,
  .service-full-aside,
  .service-credential-panel,
  .service-credential-card,
  .resources-network-related-card,
  .resources-network-preview,
  .resources-network-expanded,
  .resources-page-cta,
  .services-page-cta-inner,
  .review-carousel-viewport
) a:not(.btn-primary):not(.btn-secondary):not(.btn-outline):not(.form-submit):not(.resource-card-link):hover {
  color: #ffd8cb;
}

.hero-copy .hero-notes span,
.article-keyword-row span,
:is(
  .service-quick-tags span,
  .overview-point,
  .review-submit-point
) {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  color: var(--card-text);
  box-shadow: none;
}

.article-breadcrumb a {
  color: var(--card-text);
}

.article-breadcrumb a:hover {
  color: #ffd8cb;
}

:is(
  .problem-card-icon,
  .service-quick-icon,
  .service-full-icon,
  .contact-row-icon,
  .contact-info-icon
) {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  color: #dce7e1;
}

.service-full-figure,
.article-figure,
.article-graphic,
.service-credential-panel,
.service-credential-card,
.service-full-aside,
.review-card-outcome {
  background: var(--card-deep-soft);
  border-color: rgba(255,255,255,0.12);
}

.review-card-outcome,
.service-full-figure figcaption,
.article-figure figcaption,
.article-graphic {
  color: var(--card-text-soft);
}

.service-quick:hover,
.service-full:hover,
.resource-card:hover,
.case-card:hover,
.testimonial-card:hover,
.review-card:hover,
.review-stat:hover,
.services-overview-card:hover,
.contact-card:hover,
.founder-card:hover,
.founder-manifesto:hover,
.article-sidebar-card:hover,
.article-cta-box:hover {
  box-shadow: 0 34px 72px rgba(15,23,42,0.34);
}

.resource-card-link:hover h3,
.resource-card-link:focus-visible h3 {
  color: var(--card-text);
}

.resource-card-link:hover .resource-card-cta,
.resource-card-link:focus-visible .resource-card-cta {
  color: #ffd8cb;
}

.how-step-num {
  color: var(--gold);
}

.tarif-card,
.tarif-card.featured {
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(180deg, rgba(30,41,59,0.18) 0%, rgba(217,115,78,0.08) 100%);
}

.tarif-card:hover,
.tarif-card.featured:hover {
  border-color: rgba(255,255,255,0.22);
  background: linear-gradient(180deg, rgba(30,41,59,0.18) 0%, rgba(217,115,78,0.08) 100%);
}

.tarif-features li {
  color: rgba(249,249,247,0.86);
}

.bulletin-form .form-subtitle,
.review-submit-copy .section-intro,
.review-submit-copy p,
.article-content p,
.article-sidebar-card p,
.article-sidebar-card li,
.article-cta-box p,
.article-strategic-intro,
.article-strategic-note,
.usefulness-vote p,
.service-full-body p,
.service-full-sub p,
.resource-card p,
.case-card p,
.testimonial-card p,
.problem-card p,
.pillar-card p,
.founder-card p,
.founder-manifesto p {
  color: var(--card-text-soft);
}

.article-content h2,
.article-sidebar-card h3,
.article-cta-box h3,
.article-strategic-support h3,
.service-full-body h3,
.service-full-sub h4,
.resource-card h3,
.case-card h3,
.problem-card h3,
.pillar-card h3,
.review-card h3,
.review-submit-copy .section-title,
.services-page-cta-inner .section-title,
.contact-row-body h3,
.contact-info-item h4,
.founder-manifesto h3 {
  color: var(--card-text);
}

#contact .contact-info-block .section-label {
  padding: 8px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

#contact .contact-info-block .section-title {
  font-size: clamp(1.65rem, 2.6vw, 2.3rem);
  line-height: 1.18;
  max-width: 14ch;
  margin-bottom: 16px;
}

#contact .contact-info-block .section-intro {
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 28px !important;
}

#contact .bulletin-form h3 {
  color: var(--card-text);
}

#contact .bulletin-form .form-subtitle,
#contact .bulletin-form .form-check,
#contact .bulletin-form .form-check label {
  color: var(--card-text-soft);
}

#contact .bulletin-form .form-group label {
  color: rgba(249,249,247,0.9);
}

#contact .bulletin-form .form-check a {
  color: #ffd8cb;
}

.cta-final .section-label {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: none;
  color: rgba(249,249,247,0.92);
}

.cta-final .section-title {
  color: #ffffff;
}

.cta-final-sub {
  color: rgba(249,249,247,0.84);
}

.cta-tel {
  color: rgba(249,249,247,0.78);
}

.cta-tel a {
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,0.32);
}

.cta-tel a:hover {
  color: #ffd8cb;
  border-bottom-color: #ffd8cb;
}

footer.footer-home-brand-center {
  background:
    radial-gradient(circle at 14% 18%, rgba(107,144,128,0.14) 0%, transparent 26%),
    radial-gradient(circle at 86% 22%, rgba(217,115,78,0.12) 0%, transparent 20%),
    linear-gradient(180deg, rgba(252,251,247,0.98) 0%, rgba(240,244,239,0.98) 100%);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 22px;
  text-align: center;
}

footer.footer-home-brand-center .footer-logo {
  justify-content: center;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

footer.footer-home-brand-center .footer-logo img {
  width: min(100%, 360px);
}

footer.footer-home-brand-center .footer-links {
  justify-content: center;
  width: 100%;
}

footer.footer-home-brand-center .footer-links a,
footer.footer-home-brand-center .footer-links button {
  color: var(--navy);
}

footer.footer-home-brand-center .footer-links a:hover,
footer.footer-home-brand-center .footer-links button:hover {
  color: var(--gold);
}

footer.footer-home-brand-center .footer-legal {
  color: var(--text-muted);
  text-align: center;
}

/* =========================================
   UNIFIED CARD SURFACE
   ========================================= */
:root {
  --card-surface-unified:
    linear-gradient(180deg, rgba(30,41,59,0.94) 0%, rgba(43,60,78,0.95) 58%, rgba(82,108,107,0.9) 100%);
  --card-surface-unified-alt:
    linear-gradient(180deg, rgba(40,57,74,0.95) 0%, rgba(54,75,91,0.95) 48%, rgba(94,139,126,0.9) 100%);
  --card-surface-unified-soft: rgba(255,255,255,0.08);
  --card-surface-border: rgba(255,255,255,0.16);
}

:is(
  .problem-card,
  .pillar-card,
  .service-quick,
  .service-full,
  .resource-card,
  .case-card,
  .testimonial-card,
  .review-card,
  .review-stat,
  .services-overview-card,
  .contact-card,
  .contact-info-block,
  .bulletin-form,
  .review-submit-copy,
  .reviews-page-note,
  .article-content,
  .article-sidebar-card,
  .article-cta-box,
  .article-strategic-support,
  .usefulness-vote,
  .founder-card,
  .founder-manifesto,
  .service-full-aside,
  .service-credential-panel,
  .service-credential-card,
  .resources-network-related-card,
  .resources-network-preview,
  .resources-network-expanded,
  .resources-page-cta,
  .services-page-cta-inner,
  .review-carousel-viewport,
  .tarif-card,
  .tarif-card.featured
) {
  background: var(--card-surface-unified);
  border-color: var(--card-surface-border);
  box-shadow: 0 30px 68px rgba(15,23,42,0.28);
  backdrop-filter: blur(10px);
}

:is(
  .review-stat,
  .contact-info-block,
  .service-full-aside,
  .service-credential-card,
  .resources-network-related-card,
  .resources-page-cta,
  .services-page-cta-inner,
  .tarif-card,
  .tarif-card.featured
) {
  background: var(--card-surface-unified-alt);
}

:is(
  .problem-card,
  .pillar-card,
  .service-quick,
  .service-full,
  .resource-card,
  .case-card,
  .testimonial-card,
  .review-card,
  .services-overview-card,
  .contact-card,
  .bulletin-form,
  .review-submit-copy,
  .reviews-page-note,
  .article-content,
  .article-sidebar-card,
  .article-cta-box,
  .article-strategic-support,
  .usefulness-vote,
  .founder-card,
  .founder-manifesto,
  .service-credential-panel,
  .resources-network-preview,
  .resources-network-expanded,
  .review-carousel-viewport
):hover,
:is(
  .problem-card,
  .pillar-card,
  .service-quick,
  .service-full,
  .resource-card,
  .case-card,
  .testimonial-card,
  .review-card,
  .services-overview-card,
  .contact-card,
  .bulletin-form,
  .review-submit-copy,
  .reviews-page-note,
  .article-content,
  .article-sidebar-card,
  .article-cta-box,
  .article-strategic-support,
  .usefulness-vote,
  .founder-card,
  .founder-manifesto,
  .service-credential-panel,
  .resources-network-preview,
  .resources-network-expanded,
  .review-carousel-viewport
):focus-within {
  background: var(--card-surface-unified);
}

:is(
  .review-stat,
  .contact-info-block,
  .service-full-aside,
  .service-credential-card,
  .resources-network-related-card,
  .resources-page-cta,
  .services-page-cta-inner,
  .tarif-card,
  .tarif-card.featured
):hover,
:is(
  .review-stat,
  .contact-info-block,
  .service-full-aside,
  .service-credential-card,
  .resources-network-related-card,
  .resources-page-cta,
  .services-page-cta-inner,
  .tarif-card,
  .tarif-card.featured
):focus-within {
  background: var(--card-surface-unified-alt);
}

:is(
  .problem-card,
  .pillar-card,
  .service-quick,
  .service-full,
  .resource-card,
  .case-card,
  .review-stat,
  .services-overview-card,
  .contact-card,
  .bulletin-form,
  .resource-card,
  .article-strategic-support
)::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--brand-ribbon);
}

:is(
  .service-full-figure,
  .article-figure,
  .article-graphic,
  .service-credential-panel,
  .service-credential-card,
  .service-full-aside,
  .review-card-outcome,
  .article-strategic-card,
  .usefulness-vote-button
) {
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(255,255,255,0.14);
}

:is(
  .problem-card,
  .pillar-card,
  .service-quick,
  .service-full,
  .resource-card,
  .case-card,
  .testimonial-card,
  .review-card,
  .review-stat,
  .services-overview-card,
  .contact-card,
  .contact-info-block,
  .bulletin-form,
  .review-submit-copy,
  .reviews-page-note,
  .article-content,
  .article-sidebar-card,
  .article-cta-box,
  .article-strategic-support,
  .usefulness-vote,
  .founder-card,
  .founder-manifesto,
  .service-full-aside,
  .service-credential-panel,
  .service-credential-card,
  .resources-network-related-card,
  .resources-network-preview,
  .resources-network-expanded,
  .resources-page-cta,
  .services-page-cta-inner,
  .review-carousel-viewport,
  .tarif-card,
  .tarif-card.featured
):hover {
  box-shadow: 0 34px 74px rgba(15,23,42,0.34);
}

.service-quick:hover,
.service-quick:focus-within {
  background: var(--card-surface-unified);
}

.service-full:hover,
.service-full:focus-within {
  background: var(--card-surface-unified);
}

/* =========================================
   DARK HEADER + OPENING SECTIONS
   ========================================= */
.site-header {
  background: linear-gradient(135deg, rgba(20,31,45,0.98) 0%, rgba(33,48,65,0.98) 58%, rgba(86,118,111,0.94) 100%);
  border-bottom-color: rgba(255,255,255,0.1);
  box-shadow: 0 18px 38px rgba(15,23,42,0.24);
}

.site-header::after {
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(107,144,128,0.68) 40%, rgba(217,115,78,0.66) 100%);
}

.header-logo-kicker {
  color: rgba(249,249,247,0.7);
}

.header-logo-name {
  color: #ffffff;
}

.header-link {
  color: rgba(249,249,247,0.82);
}

.header-link:hover,
.header-link.active {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}

.header-search-trigger {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.header-search-trigger:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.header-search-shortcut {
  background: rgba(255,255,255,0.1);
  color: rgba(249,249,247,0.9);
}

.header-nav.open {
  background: linear-gradient(180deg, rgba(20,31,45,0.99) 0%, rgba(33,48,65,0.99) 60%, rgba(86,118,111,0.96) 100%);
  border-top-color: rgba(255,255,255,0.1);
}

.hero,
.page-hero,
.article-hero {
  background:
    radial-gradient(circle at 14% 18%, rgba(107,144,128,0.2) 0%, transparent 24%),
    radial-gradient(circle at 86% 20%, rgba(217,115,78,0.18) 0%, transparent 22%),
    linear-gradient(135deg, rgba(20,31,45,0.98) 0%, rgba(34,49,66,0.98) 56%, rgba(86,118,111,0.94) 100%);
}

.hero::after,
.page-hero::after,
.article-hero::after {
  background: linear-gradient(to bottom, rgba(249,249,247,0), rgba(20,31,45,0.22));
}

.page-hero > .section-label,
.article-hero > .section-label {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(249,249,247,0.9);
  box-shadow: none;
}

.page-hero > .section-title,
.article-hero > .section-title {
  color: #ffffff;
}

.page-hero > p,
.article-hero > p,
.article-breadcrumb,
.article-meta,
.article-keywords {
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 18px 36px rgba(15,23,42,0.18);
}

.page-hero > p,
.article-hero > p,
.article-breadcrumb,
.article-meta,
.article-keywords-label {
  color: rgba(249,249,247,0.86);
}

.article-breadcrumb a {
  color: #ffffff;
}

.article-keyword-row span {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  color: rgba(249,249,247,0.92);
}

.page-hero-link {
  color: rgba(249,249,247,0.92);
  border-bottom-color: rgba(255,255,255,0.34);
}

.page-hero-link:hover {
  color: #ffd8cb;
  border-bottom-color: #ffd8cb;
}

/* =========================================
   KEYWORD CHIP READABILITY FIX
   ========================================= */
:root {
  --keyword-chip-surface: linear-gradient(135deg, rgba(34,49,66,0.96) 0%, rgba(86,118,111,0.94) 100%);
  --keyword-chip-border: rgba(255,255,255,0.18);
  --keyword-chip-text: #f9f9f7;
  --keyword-chip-shadow: 0 16px 30px rgba(15,23,42,0.18);
}

:is(
  .hero-notes span,
  .signal-chips span,
  .overview-point,
  .service-tag,
  .service-quick-tags span,
  .service-graphic-chips span,
  .service-graphic-footer span,
  .resource-chip-row span,
  .article-keyword-row span,
  .review-submit-point,
  .national-item,
  .review-timeline span,
  .site-search-chip
) {
  background: var(--keyword-chip-surface);
  border: 1px solid var(--keyword-chip-border);
  color: var(--keyword-chip-text);
  box-shadow: var(--keyword-chip-shadow);
  text-shadow: 0 1px 0 rgba(15,23,42,0.2);
}

:is(
  .hero-notes span,
  .signal-chips span,
  .overview-point,
  .service-tag,
  .service-quick-tags span,
  .service-graphic-chips span,
  .service-graphic-footer span,
  .resource-chip-row span,
  .article-keyword-row span,
  .review-submit-point,
  .national-item,
  .review-timeline span,
  .site-search-chip
):hover,
:is(
  .hero-notes span,
  .signal-chips span,
  .overview-point,
  .service-tag,
  .service-quick-tags span,
  .service-graphic-chips span,
  .service-graphic-footer span,
  .resource-chip-row span,
  .article-keyword-row span,
  .review-submit-point,
  .national-item,
  .review-timeline span,
  .site-search-chip
):focus-visible {
  background: linear-gradient(135deg, rgba(40,57,76,0.98) 0%, rgba(96,130,121,0.96) 100%);
  border-color: rgba(255,255,255,0.22);
  color: #ffffff;
}

.article-keywords-label {
  color: var(--keyword-chip-text);
}

/* =========================================
   HOME HERO SUBTEXT READABILITY FIX
   ========================================= */
.hero-copy .hero-sub {
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.08) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(249,249,247,0.94);
  box-shadow: 0 18px 38px rgba(15,23,42,0.16);
}

/* =========================================
   QA PASS - HEADER / LEGAL / FORMS
   ========================================= */
.header-link:hover,
.header-link.active {
  color: #dce9df;
  background: rgba(107,144,128,0.18);
  box-shadow: inset 0 0 0 1px rgba(107,144,128,0.22);
}

.form-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.form-check label {
  display: block;
}

.national-item a {
  color: inherit;
  text-decoration: none;
}

.national-item a:hover {
  color: #ffffff;
}

/* =========================================
   RESOURCE CARD CTA ALIGNMENT
   ========================================= */
.resource-card-cta,
.resources-home .resource-card > a:last-child {
  width: 100%;
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(249,249,247,0.94);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.resource-card-cta::after,
.resources-home .resource-card > a:last-child::after {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(45deg);
  flex: 0 0 auto;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.resource-card-link:hover .resource-card-cta,
.resource-card-link:focus-visible .resource-card-cta,
.resources-home .resource-card:hover > a:last-child,
.resources-home .resource-card > a:last-child:hover {
  color: #ffd8cb;
}

.resource-card-link:hover .resource-card-cta::after,
.resource-card-link:focus-visible .resource-card-cta::after,
.resources-home .resource-card:hover > a:last-child::after,
.resources-home .resource-card > a:last-child:hover::after {
  border-color: #ffd8cb;
  transform: translateX(3px) rotate(45deg);
}

.resource-card,
.resource-card-link,
.resource-card.is-card-link {
  cursor: pointer;
  will-change: transform, box-shadow;
  transition:
    transform 0.28s var(--motion-smooth),
    box-shadow 0.28s var(--motion-smooth),
    border-color 0.28s var(--motion-smooth),
    background 0.28s var(--motion-smooth),
    filter 0.28s var(--motion-smooth);
}

.resource-card::before,
.resource-card-link::before {
  transition:
    height 0.28s var(--motion-smooth),
    opacity 0.28s var(--motion-smooth),
    filter 0.28s var(--motion-smooth);
}

.resource-card:is(:hover, :focus-visible),
.resource-card-link:is(:hover, :focus-visible),
.resource-card.is-card-link:is(:hover, :focus-visible) {
  transform: translateY(-10px) scale(1.012);
  box-shadow: 0 32px 72px rgba(15,23,42,0.28);
  border-color: rgba(217,115,78,0.22);
  filter: saturate(1.02);
}

.resource-card:is(:hover, :focus-visible)::before,
.resource-card-link:is(:hover, :focus-visible)::before,
.resource-card.is-card-link:is(:hover, :focus-visible)::before {
  height: 6px;
  opacity: 1;
  filter: saturate(1.08);
}

.resource-card.is-card-link:focus-visible {
  outline: 2px solid rgba(217,115,78,0.34);
  outline-offset: 4px;
}

/* =========================================
   SERVICES OVERVIEW READABILITY FIX
   ========================================= */
.services-overview-metrics {
  background: linear-gradient(160deg, rgba(30,41,59,0.98) 0%, rgba(37,54,72,0.99) 58%, rgba(94,139,126,0.92) 100%);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 30px 68px rgba(15,23,42,0.28);
}

.services-overview-metrics .overview-metric {
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.05) 100%);
}

.services-overview-metrics .overview-metric:last-of-type {
  padding-bottom: 16px;
}

.services-overview-metrics .overview-metric strong {
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(15,23,42,0.22);
}

.services-overview-metrics .overview-metric span {
  color: rgba(249,249,247,0.92);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.services-overview-metrics .overview-note {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(20,31,45,0.28);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(249,249,247,0.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

/* =========================================
   VISUAL QA PASS - CARD CONTRAST FIXES
   ========================================= */
.service-quick {
  background: var(--card-surface-unified);
  border-color: var(--card-surface-border);
}

.service-quick h3,
.service-quick p {
  color: var(--card-text);
}

.service-quick p {
  color: var(--card-text-soft);
}

.service-quick-tags span {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.16);
  color: rgba(249,249,247,0.94);
}

.service-quick-icon {
  color: #e5efe9;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.review-stat strong,
.review-card h3 {
  color: var(--card-text);
}

.review-stat span,
.review-card p,
.review-card-date,
.review-card-meta,
.review-card-expanded .review-card-body p {
  color: var(--card-text-soft);
}

.review-stat {
  background: linear-gradient(160deg, rgba(30,41,59,0.98) 0%, rgba(40,58,76,0.98) 58%, rgba(94,139,126,0.92) 100%);
  border-color: rgba(255,255,255,0.14);
}

.review-card {
  background: linear-gradient(160deg, rgba(30,41,59,0.98) 0%, rgba(37,54,72,0.99) 58%, rgba(94,139,126,0.88) 100%);
  border-color: rgba(255,255,255,0.12);
}

.review-card-meta {
  border-top-color: rgba(255,255,255,0.12);
}

.contact-row-body a,
.contact-row-body p {
  color: var(--card-text);
}

.contact-row-body p {
  color: var(--card-text-soft);
}

.contact-row-icon {
  color: #e5efe9;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.14);
}

.contact-divider {
  background: rgba(255,255,255,0.12);
}

/* =========================================
   HOME HERO TIGHTEN
   ========================================= */
.hero::after {
  height: 104px;
}

.hero-body {
  padding-top: clamp(36px, 4.8vw, 56px);
  padding-bottom: clamp(52px, 6vw, 80px);
}

@media (max-width: 900px) {
  .hero-body {
    padding-top: clamp(28px, 6vw, 40px);
    padding-bottom: clamp(56px, 8vw, 72px);
  }
}

/* =========================================
   GLOBAL SPACING + COLORED SURFACE QA
   ========================================= */
:root {
  --site-section-max: 1200px;
  --site-section-gutter: clamp(24px, 4.8vw, 60px);
  --site-section-space: clamp(28px, 3.5vw, 44px);
  --site-section-space-tight: clamp(21px, 2.75vw, 32px);
}

.hero {
  min-height: auto;
  padding: 0;
}

.hero-body {
  width: min(100%, calc(var(--site-section-max) + (var(--site-section-gutter) * 2)));
  max-width: none;
  margin-inline: auto;
  align-items: flex-start;
  padding:
    clamp(10px, 1.4vw, 18px)
    var(--site-section-gutter)
    var(--site-section-space);
}

.hero::after {
  height: 0;
}

.page-hero,
.article-hero {
  padding:
    clamp(56px, 7vw, 82px)
    var(--site-section-gutter)
    clamp(44px, 5.6vw, 64px);
}

.page-hero::after,
.article-hero::after {
  left: var(--site-section-gutter);
  right: var(--site-section-gutter);
}

.probleme,
.services,
.case-section,
.founder-section,
.how,
.tarif,
.resources-home,
.contact-section,
.cta-final,
.services-page,
.resources-page,
.reviews-page,
.contact-page {
  padding-top: var(--site-section-space);
  padding-bottom: var(--site-section-space);
  padding-left: var(--site-section-gutter);
  padding-right: var(--site-section-gutter);
}

.resources-page,
.reviews-page,
.services-page,
.contact-page {
  padding-inline: var(--site-section-gutter);
}

.contact-page {
  min-height: auto;
}

.national-banner,
.problem-layout,
.services-header,
.pillar-grid,
.case-grid,
.testimonial-section-head,
.review-carousel,
.founder-grid,
.how > div:first-child,
.how-steps,
.how .section-cta-row,
.tarif-cards,
.tarif-note,
.resources-grid-large,
.resources-home .section-cta-row,
.contact-grid,
.services-overview,
.services-highlight-grid,
.services-page-grid,
.services-page-cta,
.resources-intro,
.resources-network,
.resources-page-cta,
.reviews-page-inner,
.contact-page .contact-grid,
.page-content {
  width: min(100%, var(--site-section-max));
  max-width: var(--site-section-max);
  margin-inline: auto;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.case-section > .section-title,
.case-section > .section-intro,
.tarif > .section-title,
.resources-home > .section-title,
.resources-home > .section-intro,
.cta-final > .section-title,
.cta-final > .cta-final-sub {
  max-width: 760px;
}

.resources-home > .section-title,
.resources-home > .section-intro,
.case-section > .section-title,
.case-section > .section-intro,
.tarif > .section-title,
.tarif-note,
.cta-final > .section-title,
.cta-final > .cta-final-sub {
  margin-left: auto;
  margin-right: auto;
}

.resources-home > .section-title,
.resources-home > .section-intro,
.resources-home > .resources-grid-large,
.resources-home > .section-cta-row,
.case-section > .section-title,
.case-section > .section-intro,
.case-grid,
.testimonial-section-head,
.review-carousel,
.tarif > .section-title,
.tarif-cards,
.tarif-note,
.cta-final > .section-title,
.cta-final > .cta-final-sub,
.cta-final > .btn-primary,
.cta-final > .cta-tel {
  width: min(100%, var(--site-section-max));
}

.case-section > .section-label,
.tarif > .section-label,
.resources-home > .section-label,
.cta-final > .section-label {
  margin-left: max(0px, calc((100% - (var(--site-section-max) + (var(--site-section-gutter) * 2))) / 2));
}

.services-page,
.resources-page,
.reviews-page {
  padding-bottom: var(--site-section-space-tight);
}

.service-credential-panel,
.service-credential-card,
.service-full-aside,
.services-page-cta-inner,
.resources-page-cta,
.review-card,
.review-stat,
.contact-card,
.contact-info-block,
.bulletin-form,
.reviews-page-note,
.review-submit-copy,
.resource-card,
.case-card,
.testimonial-card,
.problem-card,
.pillar-card,
.service-quick,
.service-full,
.founder-card,
.founder-manifesto,
.tarif-card,
.tarif-card.featured,
.review-carousel-viewport,
.article-content,
.article-sidebar-card,
.article-cta-box,
.article-strategic-support,
.resources-network-preview,
.resources-network-expanded,
.resources-network-related-card {
  color: var(--card-text-soft);
}

.service-credential-label,
.service-full-badge,
.review-card-label,
.hero-panel-kicker,
.service-full-aside h4,
.case-kicker,
.pillar-index,
.service-quick-num,
.service-graphic-kicker,
.review-card-label,
.review-card-top .review-card-label,
.service-full-tags .service-tag {
  color: var(--gold-light);
}

.service-credential-panel :is(h4, h5, strong),
.service-credential-card :is(h4, h5, strong),
.service-full-aside :is(h4, strong),
.services-page-cta-inner :is(h2, h3, strong),
.resources-page-cta :is(h2, h3, strong),
.review-card :is(h3, strong),
.review-stat :is(strong),
.contact-card :is(h3, strong),
.contact-info-block :is(h2, h3, h4, strong),
.bulletin-form :is(h3, label, strong),
.reviews-page-note :is(strong),
.review-submit-copy :is(h2, h3, strong),
.resource-card :is(h3, strong),
.case-card :is(h3, strong),
.testimonial-card :is(h3, strong),
.problem-card :is(h3, strong),
.pillar-card :is(h3, strong),
.service-quick :is(h3, strong),
.service-full :is(h3, h4, h5, strong),
.founder-card :is(h2, h3, h4, strong),
.founder-manifesto :is(h2, h3, h4, strong),
.tarif-card :is(h3, strong),
.review-carousel-viewport :is(h3, strong),
.article-content :is(h2, h3, h4, strong),
.article-sidebar-card :is(h3, h4, strong),
.article-cta-box :is(h3, strong),
.article-strategic-support :is(h3, strong),
.resources-network-preview :is(h3, strong),
.resources-network-expanded :is(h3, strong),
.resources-network-related-card :is(h3, strong) {
  color: #ffffff;
}

.resources-network-expanded h3,
.resources-network-expanded .resources-network-article-link strong,
.resources-network-expanded .resources-network-related strong {
  color: var(--navy);
}

.service-credential-panel p,
.service-credential-card p,
.service-credential-list li,
.service-full-aside p,
.service-full-list li,
.service-full-callout,
.services-page-cta-inner p,
.services-page-cta-note,
.resources-page-cta p,
.review-card p,
.review-card-date,
.review-card-meta,
.review-card-outcome,
.review-stat span,
.contact-row-body p,
.contact-row-body a,
.contact-info-item p,
.contact-info-item a,
.form-subtitle,
.review-submit-rule,
.review-submit-point,
.resource-card p,
.case-card p,
.case-result,
.case-block p,
.testimonial-card p,
.problem-card p,
.pillar-card p,
.service-quick p,
.service-full-body p,
.service-full-sub p,
.service-full-figure figcaption,
.founder-card p,
.founder-manifesto p,
.tarif-note,
.article-content p,
.article-content li,
.article-sidebar-card p,
.article-cta-box p,
.article-strategic-support p,
.resources-network-preview p,
.resources-network-expanded p,
.resources-network-related-card p {
  color: var(--card-text-soft);
}

#methode .pillar-card {
  background: linear-gradient(160deg, rgba(28, 39, 55, 0.98) 0%, rgba(38, 55, 73, 0.98) 56%, rgba(60, 84, 91, 0.96) 100%);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.2);
}

#methode .pillar-index {
  color: rgba(255, 232, 196, 0.9);
}

#methode .pillar-card p {
  color: rgba(249, 249, 247, 0.9);
}

#methode .pillar-list li {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 500;
  letter-spacing: 0.01em;
}

#methode .pillar-list li::before {
  background: linear-gradient(180deg, rgba(255, 244, 220, 0.98) 0%, rgba(217, 115, 78, 0.95) 100%);
  box-shadow: 0 0 0 4px rgba(217, 115, 78, 0.14);
}

.resource-card-link:focus-visible h3 {
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .hero-body,
  .page-hero,
  .article-hero,
  .probleme,
  .services,
  .case-section,
  .founder-section,
  .how,
  .tarif,
  .resources-home,
  .contact-section,
  .cta-final,
  .services-page,
  .resources-page,
  .reviews-page,
  .contact-page {
    padding-left: var(--site-section-gutter);
    padding-right: var(--site-section-gutter);
  }

  .hero-body {
    padding-top: 12px;
    padding-bottom: var(--site-section-space);
  }

  .page-hero,
  .article-hero {
    padding-top: clamp(44px, 8vw, 58px);
    padding-bottom: clamp(36px, 6vw, 48px);
  }
}

/* =========================================
   REMOVE DECORATIVE RIBBONS
   ========================================= */
.hero-title em {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
  text-decoration: none;
  text-decoration-color: transparent;
}

.hero-label::before,
.section-label::before {
  content: none;
  display: none;
}

:is(
  .probleme-card,
  .problem-card,
  .service-item,
  .tarif-card,
  .bulletin-form,
  .contact-card,
  .services-overview-card,
  .service-quick,
  .service-full,
  .service-full-sub,
  .services-page-cta-inner,
  .hero-panel,
  .pillar-card,
  .case-card,
  .review-carousel,
  .review-stat,
  .review-submit-copy,
  .founder-card,
  .founder-manifesto,
  .resource-card,
  .resource-card-link,
  .resources-network-expanded,
  .article-strategic-support,
  .usefulness-vote
)::before {
  content: none;
  display: none;
  height: 0;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .mobile-callbar {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}

.header-toggle {
  position: relative;
  z-index: 205;
}

.header-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.header-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .site-header {
    overflow: visible;
  }

  .header-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    padding: 18px 24px 28px;
    gap: 4px;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(20,31,45,0.99) 0%, rgba(33,48,65,0.99) 60%, rgba(86,118,111,0.96) 100%);
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 22px 40px rgba(15,23,42,0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.24s var(--motion-smooth),
      transform 0.24s var(--motion-smooth),
      visibility 0s linear 0.24s;
    z-index: 190;
  }

  .header-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .header-nav.open .header-link,
  .header-nav.open .header-cta {
    width: 100%;
  }
}

/* =========================================
   RESSOURCES ARTICLE EMPHASIS
   ========================================= */
.article-content .article-summary,
.article-journey-kicker,
.usefulness-vote-kicker,
.usefulness-vote h3,
.article-strategic-kicker,
.article-strategic-support h3 {
  color: var(--gold);
}

.usefulness-vote-button {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(217,115,78,0.18);
}

.usefulness-vote-button:hover,
.usefulness-vote-button:focus-visible,
.usefulness-vote-button.is-active[data-usefulness-choice="yes"],
.usefulness-vote-button.is-active[data-usefulness-choice="no"] {
  background: #c96545;
  border-color: #c96545;
  color: var(--white);
}

.article-strategic-card strong,
.article-strategic-card span {
  color: var(--white);
}

/* =========================================
   HOME NATIONAL BANNER SIMPLIFICATION
   ========================================= */
.national-banner {
  background: transparent;
  border-top: none;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 8px 18px;
  padding: 14px 18px;
}

.national-item {
  flex: 0 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  text-shadow: none;
  border-radius: 0;
  padding: 0;
  color: var(--gold);
  font-weight: 600;
  font-size: clamp(0.58rem, 0.54rem + 0.1vw, 0.68rem);
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.national-item::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: none;
}

.national-item:first-child::before {
  display: none;
}

.national-item a,
.national-item a:hover {
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .national-banner {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 10px 18px;
  }
}

@media (max-width: 700px) {
  .national-banner {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 10px;
  }

  .national-item {
    white-space: normal;
  }

  .national-item a,
  .national-item a:hover {
    white-space: nowrap;
  }
}

/* =========================================
   HOME SOCIAL PROOF WIDTH
   ========================================= */
.case-section .testimonial-section-head,
.case-section .review-carousel {
  max-width: 920px;
}

/* =========================================
   ARTICLE JOURNEY CARD TEXT READABILITY
   ========================================= */
.article-journey .article-journey-visual-label,
.article-journey .article-journey-node-label,
.article-journey .article-journey-visual-hub-kicker,
.article-journey .article-journey-status,
.article-journey .article-journey-step-counter {
  color: var(--text-muted);
}

.article-journey .article-journey-visual-title,
.article-journey .article-journey-visual-hub strong,
.article-journey .article-journey-node-title,
.article-journey .article-journey-step h4,
.article-journey .article-journey-step p,
.article-journey .article-journey-points li,
.article-journey .article-journey-card [data-journey-status] {
  color: var(--navy);
}

/* =========================================
   SERVICES PAGE CARD READABILITY
   ========================================= */
.services-page .services-overview-points,
.services-page .service-quick-tags,
.services-page .service-full-tags,
.services-page .service-graphic-chips,
.services-page .service-graphic-footer {
  gap: 4px;
}

.services-highlight-grid .service-quick.service-quick-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services-page .service-full-figure {
  padding: clamp(18px, 2.3vw, 26px);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(54,68,89,0.96) 0%, rgba(61,78,100,0.92) 100%);
  border-color: rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.services-page .service-graphic {
  gap: 16px;
  align-items: start;
}

.services-page :is(
  .service-graphic-flow,
  .service-graphic-columns,
  .service-graphic-matrix,
  .service-graphic-hub,
  .service-graphic-selection,
  .service-graphic-shield
) {
  gap: 12px;
}

.services-page .service-graphic-flow {
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
}

.services-page .service-graphic-columns {
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
}

.services-page .service-graphic-matrix,
.services-page .service-graphic-hub,
.services-page .service-graphic-selection {
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
}

.services-page .service-graphic-shield {
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
}

.services-page .service-graphic-stack {
  gap: 12px;
}

.services-page .service-graphic-node {
  min-height: 148px;
  padding: 22px 20px;
  gap: 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(246,248,250,0.95) 100%);
  border-color: rgba(255,255,255,0.68);
  box-shadow: 0 18px 28px rgba(15,23,42,0.16);
}

.services-page .service-graphic-node strong {
  color: #1f2d3d;
  font-size: 1rem;
  line-height: 1.32;
  max-width: none;
}

.services-page .service-graphic-node span {
  color: rgba(44,60,80,0.82);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: none;
}

.services-page .service-graphic--flow .service-graphic-node {
  padding-top: 46px;
}

.services-page .service-graphic--flow .service-graphic-node::after {
  top: 14px;
  right: 18px;
  color: rgba(52,66,87,0.52);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.services-page .service-graphic-node--core {
  background: linear-gradient(180deg, rgba(252,248,243,0.99) 0%, rgba(247,239,231,0.98) 100%);
  border-color: rgba(217,115,78,0.26);
}

.services-page .service-graphic-node--result {
  background: linear-gradient(180deg, rgba(247,250,252,0.99) 0%, rgba(240,245,249,0.97) 100%);
  border-color: rgba(148,163,184,0.34);
}

.services-page .overview-point {
  color: #ffffff;
  padding: 4px 7px;
  font-size: 0.54rem;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.services-page .section-label,
.services-page .service-full-badge,
.services-page .service-credential-label,
.services-page .service-graphic-kicker {
  color: var(--white);
}

.services-page .section-label {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: none;
}

.services-page .service-quick-tags span {
  background: rgba(30,41,59,0.08);
  border-color: rgba(30,41,59,0.14);
  color: #ffffff;
  padding: 3px 6px;
  font-size: 0.5rem;
  letter-spacing: 0.015em;
  line-height: 1;
  white-space: nowrap;
}

.services-page .service-graphic-kicker {
  background: rgba(30,41,59,0.82);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  padding: 10px 14px;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
}

.services-page .service-graphic-node strong,
.services-page .service-graphic-node--core strong,
.services-page .service-graphic-node span,
.services-page .service-graphic-chips span,
.services-page .service-graphic-footer span {
  color: var(--navy);
}

.services-page .service-graphic-node span {
  color: var(--text-muted);
}

.services-page .service-graphic-chips span,
.services-page .service-graphic-footer span {
  color: var(--white);
  padding: 3px 6px;
  font-size: 0.5rem;
  letter-spacing: 0.015em;
  line-height: 1;
  white-space: nowrap;
}

.services-page .service-full-tags .service-tag {
  color: #ffffff;
  padding: 3px 6px;
  font-size: 0.5rem;
  letter-spacing: 0.015em;
  line-height: 1;
  white-space: nowrap;
}

.services-highlight-grid .service-quick-cta {
  margin-top: auto;
  padding-top: 18px;
}

.services-page .service-full-figure figcaption {
  color: rgba(249,249,247,0.84);
  font-size: 0.86rem;
  line-height: 1.68;
}

.services-page .service-quick::before,
.services-page .service-full::before,
.services-page .service-graphic-node::before {
  display: none;
  background: none;
}

@media (max-width: 1200px) {
  .services-page .service-full {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .services-page .service-full-aside {
    grid-column: 2;
    margin-top: 8px;
  }
}

.contact-info-block .section-label {
  color: var(--white);
}

.contact-info-block .contact-page-note {
  color: var(--navy);
}

.brand-lockup {
  --brand-mark-size: 56px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand-lockup-header {
  --brand-mark-size: 54px;
}

.brand-lockup-footer {
  --brand-mark-size: 92px;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  transition: transform 0.2s ease;
}

.brand-lockup-footer:hover,
.brand-lockup-footer:focus-visible {
  transform: translateY(-2px);
}

.brand-mark {
  position: relative;
  width: var(--brand-mark-size);
  height: var(--brand-mark-size);
  flex: 0 0 auto;
  display: block;
  isolation: isolate;
}

.brand-mark-ring-wrap {
  position: absolute;
  inset: 0;
  display: block;
  animation: brand-mark-ring-spin 22s linear infinite;
  transform-origin: 50% 50%;
}

.brand-mark-ring {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(30,41,59,0.22));
}

.brand-mark-core-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 23%;
  height: 23%;
  transform: translate(-50%, -50%);
  animation: brand-mark-core-float 4.8s ease-in-out infinite;
}

.brand-mark-core-halo {
  position: absolute;
  inset: -60%;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,160,54,0.36) 0%, rgba(255,103,0,0.2) 42%, rgba(255,103,0,0) 78%);
  filter: blur(8px);
  animation: brand-mark-core-glow 4.8s ease-in-out infinite;
}

.brand-mark-core-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255,116,0,0.24));
}

.brand-mark-core-shine {
  display: none;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-copy-kicker {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.05em;
}

.brand-copy-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.header-logo {
  min-width: 0;
}

.header-logo .brand-copy {
  max-width: 208px;
}

.header-logo .brand-copy-kicker {
  color: rgba(249,249,247,0.76);
}

.header-logo .brand-copy-title {
  color: #ffffff;
}

.footer-logo {
  min-width: 0;
}

.footer-logo .brand-copy {
  align-items: center;
}

.footer-logo .brand-mark {
  margin-bottom: 2px;
}

.footer-logo .brand-copy-kicker {
  color: var(--sage-deep);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.footer-logo .brand-copy-title {
  color: var(--navy);
  font-size: 1.34rem;
}

footer.footer-home-brand-center .footer-logo {
  flex-direction: column;
}

@keyframes brand-mark-ring-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes brand-mark-core-float {
  0%, 100% {
    transform: translate(-50%, -48%);
  }
  50% {
    transform: translate(-50%, -54%);
  }
}

@keyframes brand-mark-core-glow {
  0%, 100% {
    opacity: 0.42;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.08);
  }
}

@media (max-width: 1320px) {
  .header-logo-kicker {
    display: block;
    font-size: 0.52rem;
    letter-spacing: 0.09em;
  }

  .brand-lockup-header {
    --brand-mark-size: 48px;
    gap: 12px;
  }

  .header-logo .brand-copy {
    max-width: 168px;
  }

  .header-logo .brand-copy-kicker {
    font-size: 0.52rem;
  }

  .header-logo .brand-copy-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .brand-lockup-header {
    --brand-mark-size: 44px;
    gap: 10px;
  }

  .header-logo .brand-copy {
    max-width: 132px;
  }

  .header-logo .brand-copy-kicker {
    font-size: 0.46rem;
    letter-spacing: 0.04em;
  }

  .header-logo .brand-copy-title {
    font-size: 0.76rem;
  }

  .brand-lockup-footer {
    --brand-mark-size: 80px;
    gap: 14px;
  }

  .footer-logo .brand-copy-kicker {
    font-size: 0.68rem;
  }

  .footer-logo .brand-copy-title {
    font-size: 1.18rem;
  }
}

@media (max-width: 560px) {
  .brand-lockup-footer {
    --brand-mark-size: 70px;
    gap: 12px;
  }

  .footer-logo .brand-copy-title {
    font-size: 1.04rem;
  }
}

/* =========================================
   BRAND PALETTE REFRESH — BLUE ORBIT
   ========================================= */
:root {
  --navy: #0c4f96;
  --navy-light: #0f70b3;
  --sage: #18a8e6;
  --sage-deep: #157dbd;
  --gold: #ff6c08;
  --gold-light: #ff9727;
  --cream: #f7fbff;
  --cream-dark: #e5f1fb;
  --text: #143f69;
  --text-muted: #5a7690;
  --ink: #083f7c;
  --ink-soft: #0d6fae;
  --panel: rgba(255,255,255,0.9);
  --panel-soft: rgba(255,255,255,0.78);
  --border: rgba(12,79,150,0.12);
  --border-strong: rgba(12,79,150,0.2);
  --brand-ribbon: linear-gradient(90deg, #0b4c95 0%, #18a8e6 62%, #ff7a10 100%);
  --brand-ribbon-vertical: linear-gradient(180deg, #0b4c95 0%, #18a8e6 62%, #ff7a10 100%);
  --shadow-soft: 0 18px 42px rgba(8,63,124,0.1);
  --shadow-strong: 0 30px 84px rgba(8,63,124,0.18);
  --card-deep: linear-gradient(155deg, rgba(7,49,96,0.98) 0%, rgba(10,76,145,0.98) 58%, rgba(18,134,207,0.94) 100%);
  --card-deep-alt: linear-gradient(155deg, rgba(7,59,111,0.98) 0%, rgba(13,111,174,0.95) 62%, rgba(24,168,230,0.92) 100%);
  --card-surface-unified: linear-gradient(180deg, rgba(7,47,92,0.96) 0%, rgba(10,74,141,0.96) 58%, rgba(16,123,189,0.92) 100%);
  --card-surface-unified-alt: linear-gradient(180deg, rgba(8,56,106,0.96) 0%, rgba(11,86,152,0.96) 48%, rgba(24,168,230,0.9) 100%);
  --card-surface-unified-soft: rgba(255,255,255,0.09);
  --card-surface-border: rgba(188,230,255,0.2);
  --keyword-chip-surface: linear-gradient(135deg, rgba(8,63,124,0.96) 0%, rgba(12,97,158,0.95) 56%, rgba(24,168,230,0.92) 100%);
  --keyword-chip-border: rgba(207,239,255,0.22);
  --keyword-chip-text: #f7fbff;
  --keyword-chip-shadow: 0 16px 30px rgba(8,63,124,0.22);
}

body {
  background:
    radial-gradient(circle at 8% 10%, rgba(24,168,230,0.16) 0%, transparent 24%),
    radial-gradient(circle at 94% 16%, rgba(255,108,8,0.1) 0%, transparent 18%),
    radial-gradient(circle at 82% 82%, rgba(12,79,150,0.09) 0%, transparent 22%),
    linear-gradient(180deg, #fbfdff 0%, #f3f8fe 46%, #ecf4fd 100%);
}

.hero,
.page-hero,
.article-hero,
footer.footer-home-brand-center {
  background:
    radial-gradient(circle at 14% 18%, rgba(24,168,230,0.14) 0%, transparent 26%),
    radial-gradient(circle at 86% 20%, rgba(255,108,8,0.12) 0%, transparent 22%),
    linear-gradient(135deg, #fdfefe 0%, #f1f7fe 52%, #eaf3fd 100%);
}

.hero::before,
.page-hero::before,
.article-hero::before {
  background:
    linear-gradient(118deg, rgba(255,255,255,0.76) 0%, rgba(255,255,255,0.14) 42%, transparent 72%),
    radial-gradient(circle at 78% 24%, rgba(24,168,230,0.18) 0%, transparent 20%),
    radial-gradient(circle at 88% 74%, rgba(255,108,8,0.16) 0%, transparent 26%);
}

.hero-copy::before {
  background: radial-gradient(circle, rgba(255,108,8,0.18) 0%, rgba(255,108,8,0) 70%);
}

.hero-copy,
.hero-sub,
.page-hero > p,
.article-hero > p,
.reviews-page-note,
.contact-page-note,
.overview-note,
.article-summary,
.review-submit-rule,
.article-breadcrumb,
.article-meta,
.article-keywords {
  border-color: rgba(12,79,150,0.1);
  box-shadow: 0 20px 44px rgba(8,63,124,0.08);
}

.article-keyword-row span,
.hero-notes span,
.signal-chips span,
.overview-point,
.service-tag,
.service-quick-tags span,
.service-graphic-chips span,
.resource-chip-row span,
.review-submit-point,
.national-item,
.review-timeline span {
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(247,251,255,0.78) 100%);
  border-color: rgba(21,125,189,0.16);
  box-shadow: 0 10px 24px rgba(8,63,124,0.06);
  color: var(--navy);
}

.hero-notes {
  max-width: 100%;
}

.hero-notes span {
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

@media (min-width: 1081px) {
  .hero-notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    align-items: stretch;
  }

  .hero-notes span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: 100%;
    white-space: nowrap;
    text-align: center;
    padding: 6px 8px;
    font-size: 0.58rem;
    letter-spacing: 0.01em;
    line-height: 1.15;
  }
}

.hero-notes span:hover,
.hero-notes span:focus-visible {
  background: linear-gradient(180deg, rgba(255, 166, 47, 0.98) 0%, rgba(255, 122, 0, 0.98) 100%);
  border-color: rgba(255, 204, 150, 0.92);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(242, 91, 0, 0.22);
  transform: translateY(-1px);
}

.article-keyword-row span {
  background: rgba(24,168,230,0.09);
  border-color: rgba(24,168,230,0.16);
}

.national-banner {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(244,249,255,0.76) 100%);
  border-top-color: rgba(12,79,150,0.08);
  border-bottom-color: rgba(12,79,150,0.08);
}

.site-header {
  background: linear-gradient(135deg, rgba(7,45,89,0.98) 0%, rgba(10,74,142,0.98) 58%, rgba(24,168,230,0.94) 100%);
  border-bottom-color: rgba(214,241,255,0.14);
  box-shadow: 0 18px 38px rgba(8,63,124,0.24);
}

.site-header::after {
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(24,168,230,0.7) 42%, rgba(255,122,16,0.68) 100%);
}

.hero-title em {
  color: var(--sage-deep);
  text-decoration-color: rgba(255,122,16,0.4);
}

.header-logo .brand-copy-kicker {
  color: rgba(214,243,255,0.9);
  text-shadow: 0 1px 0 rgba(4,32,64,0.22);
}

.header-logo .brand-copy-title {
  color: #f8fcff;
  text-shadow: 0 4px 18px rgba(3,29,58,0.2);
}

.footer-logo .brand-copy-kicker {
  color: #1582c3;
}

.footer-logo .brand-copy-title {
  color: #0c4f96;
}

.footer-legal {
  margin-top: 18px;
  padding-top: 8px;
  line-height: 1.7;
}

.footer-legal a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.footer-legal a:hover {
  color: var(--gold);
}

footer.footer-home-brand-center .footer-legal {
  margin-top: 22px;
}

/* =========================================
   HOME CARD PALETTE REFRESH
   ========================================= */
.hero-panel {
  background: linear-gradient(160deg, rgba(7,45,89,0.98) 0%, rgba(10,74,142,0.98) 56%, rgba(16,123,189,0.95) 100%);
  border-color: rgba(207,239,255,0.18);
  box-shadow: 0 34px 74px rgba(8,63,124,0.32);
}

.hero-panel-head {
  border-bottom-color: rgba(214,243,255,0.14);
}

.hero-panel-kicker {
  color: rgba(220,246,255,0.88);
}

.hero-panel-phone,
.hero-panel-item strong,
.hero-panel-metrics strong {
  color: #ffffff;
}

.hero-panel-item span,
.hero-panel-metrics span {
  color: rgba(238,249,255,0.84);
}

.hero-panel-metrics div {
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
  border-color: rgba(209,241,255,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

#methode .pillar-card {
  background: linear-gradient(160deg, rgba(7,45,89,0.98) 0%, rgba(10,74,142,0.98) 56%, rgba(16,123,189,0.95) 100%);
  border-color: rgba(207,239,255,0.18);
  box-shadow: 0 24px 58px rgba(8,63,124,0.24);
}

#methode .pillar-index {
  color: rgba(235,247,255,0.92);
}

#methode .pillar-card h3,
#methode .pillar-card strong {
  color: #ffffff;
}

#methode .pillar-card p {
  color: rgba(237,248,255,0.88);
}

#methode .pillar-list li {
  color: rgba(255,255,255,0.98);
}

#methode .pillar-list li::before {
  background: linear-gradient(180deg, rgba(255,188,121,0.98) 0%, rgba(255,108,8,0.96) 100%);
  box-shadow: 0 0 0 4px rgba(255,122,16,0.16);
}

/* =========================================
   PAGE ENTRY LEGIBILITY FIX
   ========================================= */
.page-hero,
.article-hero {
  background:
    radial-gradient(circle at 14% 18%, rgba(24,168,230,0.22) 0%, transparent 24%),
    radial-gradient(circle at 86% 20%, rgba(255,108,8,0.16) 0%, transparent 22%),
    linear-gradient(135deg, rgba(7,45,89,0.98) 0%, rgba(10,74,142,0.98) 56%, rgba(16,123,189,0.94) 100%);
}

.page-hero::before,
.article-hero::before {
  background:
    linear-gradient(118deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.02) 42%, transparent 72%),
    radial-gradient(circle at 78% 24%, rgba(24,168,230,0.22) 0%, transparent 20%),
    radial-gradient(circle at 88% 74%, rgba(255,122,16,0.18) 0%, transparent 26%);
}

.page-hero::after,
.article-hero::after {
  opacity: 1;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(24,168,230,0.72) 42%, rgba(255,122,16,0.68) 100%);
}

.page-hero > .section-label,
.article-hero > .section-label {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(244,251,255,0.92);
  box-shadow: none;
}

.page-hero > .section-title,
.article-hero > .section-title {
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(3,29,58,0.16);
}

.page-hero > p,
.article-hero > p,
.article-breadcrumb,
.article-meta,
.article-keywords {
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
  border-color: rgba(214,243,255,0.18);
  box-shadow: 0 24px 44px rgba(3,29,58,0.18);
}

.page-hero > p,
.article-hero > p,
.article-breadcrumb,
.article-meta,
.article-keywords-label {
  color: rgba(242,249,255,0.88);
}

.page-hero-link,
.page-hero .hero-phone-link {
  color: rgba(248,252,255,0.94);
}

.page-hero-link {
  border-bottom-color: rgba(255,255,255,0.32);
}

.page-hero-link:hover,
.page-hero .hero-phone-link:hover,
.page-hero .hero-phone-link:focus-visible {
  color: #ffd3ad;
  border-bottom-color: #ffd3ad;
}

.contact-page,
.services-page,
.resources-page,
.reviews-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(24,168,230,0.08) 0%, transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #edf5fd 100%);
}

.static-page-shell {
  background:
    radial-gradient(circle at 12% 0%, rgba(24,168,230,0.08) 0%, transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #edf5fd 100%);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .header-logo .brand-copy-title {
    background-image: linear-gradient(90deg, #ffffff 0%, #e7f8ff 48%, #c9efff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .footer-logo .brand-copy-title {
    background-image: linear-gradient(90deg, #0b4c95 0%, #147dc0 56%, #0f70b3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark-ring-wrap,
  .brand-mark-core-wrap,
  .brand-mark-core-halo {
    animation: none;
  }
}

