:root {
  color-scheme: light;

  /* Neutrals */
  --surface-1:      #ffffff;
  --surface-2:      #e8ede5;
  --page-plane:     #f2f5f0;
  --text-primary:   #1a2418;
  --text-secondary: #4a5e48;
  --text-muted:     #6b7d68;
  --gridline:       rgba(26,64,36,0.10);
  --axis:           rgba(26,64,36,0.28);
  --border:         rgba(26,64,36,0.14);
  --border-strong:  rgba(26,64,36,0.24);

  /* Brand */
  --slate:          #1a2e1e;
  --slate-600:      #1a2e1e;
  --slate-500:      #2c4a32;
  --sage:           #6dbf8a;
  --sage-600:       #3a7050;
  --sage-text:      #2c5e40;
  --gold:           #c9a84c;
  --olive:          #9aaa40;
  --brand-600:      var(--slate-600);
  --brand-500:      var(--slate-500);
  --brand-400:      var(--sage);
  --brand-gradient: linear-gradient(135deg, var(--sage-600), var(--slate-500));
  --brand-wash:     rgba(26,64,36,0.07);

  /* Data / chart */
  --series-1:       var(--sage-600);
  --series-1-wash:  rgba(58,112,80,0.10);
  --good:           #3a7050;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(20,40,24,0.08);
  --shadow-md: 0 8px 24px -10px rgba(20,40,24,0.18);
  --shadow-lg: 0 24px 60px -20px rgba(20,40,24,0.24);
  --shadow-glow: 0 0 0 1px rgba(201,168,76,0.25), 0 10px 30px -10px rgba(201,168,76,0.35);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--page-plane);
  color: var(--text-primary);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--text-primary);
  color: var(--page-plane);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.text-gradient {
  background: linear-gradient(135deg, var(--sage-600), var(--slate-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: inherit;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(201,168,76,0.3), 0 14px 34px -12px rgba(44,62,80,0.35); }
.btn--primary:active { transform: translateY(0); }

.btn--secondary {
  background: var(--surface-1);
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn--secondary:hover { background: var(--surface-2); }

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
}
.btn--ghost:hover { color: var(--text-primary); background: var(--surface-2); }

.btn--reset {
  font-size: 13px;
  padding: 8px 4px;
  color: var(--text-muted);
}
.btn--reset:hover { color: var(--text-secondary); background: transparent; text-decoration: underline; }

.btn--lg { padding: 14px 26px; font-size: 15.5px; }
.btn--sm { padding: 9px 16px; font-size: 13.5px; }

/* ===================== Nav ===================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--page-plane) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav__brand .g { color: var(--sage-text); }

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav__links a {
  color: var(--text-secondary);
  text-decoration: none;
}
.nav__links a:hover { color: var(--text-primary); }

@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 24px 72px;
  text-align: center;
}

.hero__glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 640px;
  background:
    radial-gradient(560px 320px at 30% 15%, color-mix(in srgb, var(--brand-500) 30%, transparent), transparent 70%),
    radial-gradient(520px 300px at 75% 10%, color-mix(in srgb, var(--violet-600) 24%, transparent), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-wash);
  color: var(--brand-600);
  border: 1px solid color-mix(in srgb, var(--brand-500) 30%, transparent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0 0 24px;
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-600);
}
.eyebrow--muted {
  background: var(--surface-2);
  color: var(--text-secondary);
  border-color: var(--border);
}

.hero__title {
  font-size: clamp(34px, 5.4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 34px;
}

.hero__cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.flow-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 108px;
}
.flow-step__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  background: var(--surface-2);
  border-radius: 12px;
}
.flow-step__label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}
.flow-arrow {
  color: var(--text-muted);
  font-size: 16px;
}
@media (max-width: 720px) {
  .flow-arrow { transform: rotate(90deg); }
  .flow-card { flex-direction: column; }
}

/* ===================== Trust bar ===================== */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.trust-bar__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}
.trust-item__icon { font-size: 16px; }

/* ===================== Sections ===================== */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 24px;
}
.section--demo { padding-top: 88px; }

.section__header {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}
.section__header h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  margin: 10px 0 14px;
}
.section__subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  margin: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 920px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
}

.step-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step-card__num {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-600);
  background: var(--brand-wash);
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.step-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* ===================== App frame (product preview) ===================== */
.app-frame {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface-1);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.app-frame__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.app-frame__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}
.app-frame__url {
  margin: 0 auto;
  font-size: 12.5px;
  color: var(--text-muted);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

.app-frame__body {
  padding: 28px;
}

@media (max-width: 560px) {
  .app-frame__body { padding: 18px; }
}

/* ===================== In-product UI (questionnaire / dashboard) ===================== */

.view-switch {
  display: inline-flex;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3px;
  gap: 2px;
  margin-bottom: 20px;
}

.view-switch__btn {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
}

.view-switch__btn.is-active {
  background: var(--surface-1);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.view { display: flex; flex-direction: column; gap: 20px; }

.card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.card h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}

.card--intro p { color: var(--text-secondary); }

.token-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 16px 0 20px;
}

.token-badge__label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.token-badge__value {
  font-size: 13.5px;
  color: var(--brand-600);
  word-break: break-all;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

.form-hint {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 0;
}

.question {
  border: none;
  padding: 16px 0;
  margin: 0;
  border-bottom: 1px solid var(--gridline);
}
.question:last-of-type { border-bottom: none; }

.question__legend {
  font-weight: 600;
  font-size: 15px;
  padding: 0 0 4px;
  color: var(--text-primary);
}

.question__desc {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--text-secondary);
}

.scale {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.scale__option {
  flex: 1 1 0;
  min-width: 56px;
  display: flex;
}

.scale__option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.scale__option label {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 6px;
  cursor: pointer;
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.scale__option input:checked + label {
  border-color: var(--brand-500);
  background: var(--series-1-wash);
  color: var(--text-primary);
}

.scale__option input:focus-visible + label {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
}

.scale__option label strong { font-size: 15px; }

.field-group { margin-top: 20px; }
.field-group__label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.field-group__optional { font-weight: 400; color: var(--text-muted); }

textarea {
  width: 100%;
  font: inherit;
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  background: var(--surface-2);
  color: var(--text-primary);
  resize: vertical;
}
textarea:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 1px; }

#employee-form .btn { margin-top: 20px; }

.card--locked {
  text-align: center;
  padding: 48px 24px;
}
.lock-icon { font-size: 32px; margin-bottom: 8px; }
.card--locked h2 { margin-bottom: 6px; }
.card--locked p:not(.form-hint) { font-size: 15px; color: var(--text-secondary); margin: 0 0 16px; }

.progress-track {
  height: 8px;
  border-radius: 999px;
  background: var(--gridline);
  overflow: hidden;
  margin: 0 auto 16px;
  max-width: 280px;
}
.progress-track__fill {
  height: 100%;
  background: var(--brand-gradient);
  border-radius: inherit;
  transition: width 0.3s ease;
}

.auditor-dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.stat-tile {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.stat-tile__label { margin: 0; font-size: 13px; color: var(--text-secondary); }
.stat-tile__value {
  margin: 6px 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  font-family: "Inter Tight", "Inter", sans-serif;
}
.stat-tile__sub { margin: 0; font-size: 12px; color: var(--text-muted); }

.viz-root { width: 100%; }
#chart-svg { width: 100%; display: block; overflow: visible; font-family: inherit; }

.bar-label {
  font-size: 12px;
  fill: var(--text-secondary);
}
.bar-value {
  font-size: 12px;
  font-weight: 700;
  fill: var(--text-primary);
}
.bar-fill { fill: var(--series-1); }
.bar-fill:hover, .bar-fill:focus { opacity: 0.85; }
.grid-line { stroke: var(--gridline); stroke-width: 1; }
.axis-line { stroke: var(--axis); stroke-width: 1; }
.tick-label { font-size: 11px; fill: var(--text-muted); }

.bar-tooltip {
  position: absolute;
  pointer-events: none;
  background: var(--text-primary);
  color: var(--surface-1);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  transform: translate(-50%, -110%);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.1s ease;
  z-index: 10;
}
.bar-tooltip.is-visible { opacity: 1; }
.bar-tooltip strong { font-variant-numeric: normal; }

#chart-root { position: relative; }

.table-scroll { overflow-x: auto; margin-bottom: 16px; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--gridline);
  white-space: nowrap;
}
th { color: var(--text-muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.03em; }
td.num, th.num { font-variant-numeric: tabular-nums; }

/* ===================== Footer ===================== */
.footer {
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}
.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 24px 40px;
}
.footer__brand p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 10px 0 24px;
  max-width: 380px;
}
.footer__disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  max-width: 720px;
}
.footer__legal {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 14px;
}
.footer__links a {
  font-size: 12.5px;
  color: var(--text-muted);
  text-decoration: none;
}
.footer__links a:hover { color: var(--text-secondary); text-decoration: underline; }

/* ===================== Legal pages ===================== */
.legal-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 28px;
}
.back-link:hover { color: var(--text-primary); }

.legal-main h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0 0 32px;
}

.legal-intro {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 28px 0 44px;
  padding: 18px 22px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  list-style: none;
}
.legal-toc a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
}
.legal-toc a:hover { color: var(--sage-text); }

.legal-main section { margin-bottom: 40px; }
.legal-main section:last-of-type { margin-bottom: 0; }

.legal-main h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 14px;
  scroll-margin-top: 90px;
}

.legal-main h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin: 20px 0 8px;
}

.legal-main p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 14px;
  max-width: 65ch;
}

.legal-main ul, .legal-main ol {
  margin: 0 0 14px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 65ch;
}
.legal-main li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.legal-main strong { color: var(--text-primary); }
.legal-main a { color: var(--sage-text); }

.legal-placeholder {
  display: inline;
  background: rgba(201,168,76,0.15);
  border: 1px dashed rgba(201,168,76,0.55);
  border-radius: 6px;
  padding: 1px 7px;
  color: var(--slate-600);
  font-style: normal;
  font-weight: 600;
}

.legal-callout {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-500);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 0 0 14px;
}
.legal-callout p { margin: 0; }

/* ===================== Association hero (bandeau slate) ===================== */
.assoc-hero {
  position: relative;
  overflow: hidden;
  background: var(--slate-600);
  color: #ffffff;
  padding: 88px 24px 72px;
  text-align: center;
}

.assoc-hero__wave {
  display: block;
  width: min(560px, 90%);
  height: auto;
  margin: 32px auto 0;
  opacity: 0.22;
}
.assoc-hero__wave path {
  fill: none;
  stroke: var(--sage);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.assoc-hero__wave.is-visible path {
  stroke-dashoffset: 0;
}
@media (prefers-reduced-motion: reduce) {
  .assoc-hero__wave path { transition: none; stroke-dashoffset: 0; }
}

/* Two-column identity block: acronym rows (left) + headline stat (right) */
.assoc-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: left;
}
@media (max-width: 640px) {
  .assoc-hero__grid { grid-template-columns: 1fr; }
}

.assoc-hero__acronym {
  margin: 0;
  padding: 0;
  list-style: none;
}
.assoc-hero__acronym li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-display);
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
}
.assoc-hero__acronym li:last-child { border-bottom: none; }
.assoc-hero__acronym strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--sage);
  width: 18px;
  flex-shrink: 0;
}
.assoc-hero__acronym .dot {
  color: var(--olive);
  opacity: 0.85;
  font-size: 12px;
  flex-shrink: 0;
}

.assoc-hero__stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(109,191,138,0.08);
  border: 1px solid rgba(109,191,138,0.3);
  border-radius: var(--radius-md);
  padding: 22px;
}
.assoc-hero__stat .num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 10px;
}
.assoc-hero__stat .txt {
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 8px;
}
.assoc-hero__stat .src {
  font-size: 12px;
  color: rgba(154,204,158,0.9);
  font-style: italic;
}

.assoc-hero__title {
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 18px;
  color: #ffffff;
}

.assoc-hero__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin: 0 auto 36px;
}

.assoc-hero__cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--slate-600);
  box-shadow: 0 10px 28px -10px rgba(201,168,76,0.55);
}
.btn--gold:hover { transform: translateY(-1px); box-shadow: 0 14px 34px -10px rgba(201,168,76,0.65); }

.btn--on-dark {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border-color: rgba(255,255,255,0.28);
}
.btn--on-dark:hover { background: rgba(255,255,255,0.16); }

/* ===================== Mission / values / actions ===================== */
.assoc-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 88px 24px;
}
.assoc-section--tight { padding-top: 0; }

.assoc-section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-text);
  margin-bottom: 14px;
}

.assoc-section__title {
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: 18px;
  text-wrap: balance;
}

.assoc-section__body {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.75;
  max-width: 68ch;
}
.assoc-section--center { text-align: center; }
.assoc-section--center .assoc-section__body { margin: 0 auto; }

.values-grid, .actions-grid {
  display: grid;
  gap: 20px;
  margin-top: 44px;
}
.values-grid { grid-template-columns: repeat(3, 1fr); }
.actions-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) {
  .values-grid { grid-template-columns: 1fr; }
  .actions-grid { grid-template-columns: 1fr; }
}

.value-card, .action-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover, .action-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-card__icon, .action-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(122,158,135,0.14);
  color: var(--sage-text);
  font-size: 21px;
  margin-bottom: 18px;
}

.value-card h3, .action-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.value-card p, .action-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.action-card {
  display: flex;
  flex-direction: column;
}
.action-card__link {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sage-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.action-card__link:hover { text-decoration: underline; }

/* ===================== Testimonial ===================== */
.testimonial {
  background: var(--surface-2);
}
.testimonial-card {
  max-width: 720px;
  margin: 44px auto 0;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--text-primary);
  margin: 0 0 18px;
  font-style: italic;
}
.testimonial-card__quote::before { content: "\201C"; }
.testimonial-card__quote::after { content: "\201D"; }
.testimonial-card__meta {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ===================== Confidentialité (bandeau + rappel) ===================== */
.confidential-band {
  background: var(--slate-600);
  color: #ffffff;
  padding: 64px 24px;
}
.confidential-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.confidential-box__icon {
  font-size: 30px;
  margin-bottom: 16px;
  display: block;
}
.confidential-box h2 {
  color: #ffffff;
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 14px;
}
.confidential-box p {
  color: rgba(255,255,255,0.82);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.confidential-reminder {
  max-width: 720px;
  margin: 0 auto 44px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface-1);
  border: 1px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  text-align: left;
}
.confidential-reminder__icon { font-size: 22px; flex-shrink: 0; }
.confidential-reminder p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}
.confidential-reminder strong { color: var(--text-primary); }

/* ===================== Deux types d'accompagnement ===================== */
.accompaniment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
@media (max-width: 720px) {
  .accompaniment-grid { grid-template-columns: 1fr; }
}
.accompaniment-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  background: var(--surface-1);
  box-shadow: var(--shadow-sm);
}
.accompaniment-card--psy { border-top: 4px solid var(--sage); }
.accompaniment-card--legal { border-top: 4px solid var(--gold); }
.accompaniment-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 21px;
  margin-bottom: 18px;
}
.accompaniment-card--psy .accompaniment-card__icon { background: rgba(122,158,135,0.16); }
.accompaniment-card--legal .accompaniment-card__icon { background: rgba(201,168,76,0.16); }
.accompaniment-card h3 { font-size: 20px; margin-bottom: 10px; }
.accompaniment-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.65; margin: 0 0 18px; }

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate-600);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ===================== Contact ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 44px;
}
.contact-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
}
.contact-card__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 0 0 8px;
}
.contact-card__value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
.contact-card__value a { color: inherit; text-decoration: none; }
.contact-card__value a:hover { color: var(--sage-text); }

/* ===================== Scroll reveal ===================== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .nav { position: static; }
}

@media (max-width: 480px) {
  .scale { gap: 6px; }
  .hero { padding: 72px 20px 56px; }
}

/* ===================== Chiffres / stats page ===================== */
.stat-source {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 6px;
}

.big-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 640px) { .big-stats-grid { grid-template-columns: 1fr; } }
.big-stat-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.big-stat-card .num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--sage-text);
  line-height: 1;
  margin-bottom: 10px;
}
.big-stat-card .num.gold { color: var(--gold); }
.big-stat-card p { color: var(--text-secondary); font-size: 14.5px; line-height: 1.6; margin: 0; }

.silence-block {
  background: var(--slate-600);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  margin-top: 32px;
  color: #ffffff;
}
.silence-block h3 { color: #ffffff; font-size: 19px; margin-bottom: 10px; }
.silence-block > p { color: rgba(255,255,255,0.78); font-family: var(--font-body); font-size: 15px; line-height: 1.7; margin: 0 0 20px; }
.silence-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--sage);
  border-radius: 8px;
  margin-bottom: 10px;
}
.silence-item:last-child { margin-bottom: 0; }
.silence-item .si-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
}
.silence-item p { font-size: 14px; color: rgba(255,255,255,0.9); line-height: 1.6; margin: 0; }
.silence-item .si-src { font-size: 11.5px; color: rgba(255,255,255,0.5); font-style: italic; margin-top: 4px; }

.stat-line {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gridline);
}
.stat-line:last-child { border-bottom: none; }
.stat-line__body { flex: 1; }
.stat-line__body h4 { font-size: 15px; font-weight: 600; margin: 0 0 8px; color: var(--text-primary); }
.stat-line__body p { font-size: 13px; color: var(--text-secondary); line-height: 1.55; margin: 6px 0 0; }
.bar-outer { background: var(--gridline); border-radius: 4px; height: 6px; width: 100%; }
.bar-inner { height: 6px; border-radius: 4px; background: var(--sage-600); }
.bar-inner.gold { background: var(--gold); }
.stat-line__pct { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--sage-text); width: 66px; text-align: right; flex-shrink: 0; }
.stat-line__pct.gold { color: var(--gold); }

.highlight-box {
  background: rgba(109,191,138,0.10);
  border: 1px solid var(--sage);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-top: 24px;
}
.highlight-box p { font-size: 15px; line-height: 1.75; color: var(--text-primary); margin: 0; }

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
@media (max-width: 760px) { .cost-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cost-grid { grid-template-columns: 1fr; } }
.cost-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}
.cost-card .cnum { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.cost-card p { font-size: 12.5px; color: var(--text-secondary); line-height: 1.55; margin: 0; }

/* ===================== Label & Audit page ===================== */
.label-badge-row {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 24px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.l-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--slate-600);
  border: 2px solid var(--sage-600);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.l-badge .lr { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--sage); line-height: 1; }
.l-badge .ls { font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-top: 3px; }
.label-badge-row h3 { font-size: 17px; margin-bottom: 6px; }
.label-badge-row p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

.platform-banner {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 24px;
  background: var(--surface-2);
  border-top: 2px solid var(--sage-600);
  border-bottom: 2px solid var(--sage-600);
}
.platform-banner__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--slate-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  flex-shrink: 0;
}
.platform-banner h3 { font-size: 17px; margin-bottom: 6px; }
.platform-banner p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.65; margin: 0; }

.step-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--surface-2);
  color: var(--sage-text);
  font-weight: 600;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.pill {
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--sage-600);
  color: var(--sage);
  background: rgba(109,191,138,0.08);
}
.confidential-band .pill { color: var(--sage); }

/* ===================== Diagnostic (types de situations) ===================== */
.diag-alert {
  display: flex;
  gap: 14px;
  background: rgba(154,170,64,0.12);
  border: 1px solid var(--olive);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 20px 0;
}
.diag-alert__icon { font-size: 20px; flex-shrink: 0; }
.diag-alert p { font-size: 14.5px; line-height: 1.65; color: var(--text-primary); margin: 0; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}
@media (max-width: 640px) { .category-grid { grid-template-columns: 1fr; } }
.category-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.category-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.category-card h3::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.category-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.55; margin: 0; }

/* ===================== Bénévoles / partenaires ===================== */
.item-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.item-list__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.item-list__row .check { color: var(--sage-text); font-weight: 700; flex-shrink: 0; }
.item-list__row p { font-size: 14.5px; color: var(--text-primary); line-height: 1.5; margin: 0; }

.charter-box {
  background: var(--slate-600);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  margin-top: 20px;
  color: #ffffff;
}
.charter-box h3 { color: #ffffff; font-size: 18px; margin-bottom: 10px; }
.charter-box > p { color: rgba(255,255,255,0.78); font-family: var(--font-body); font-size: 14.5px; line-height: 1.65; margin: 0 0 16px; }
.charter-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  margin-bottom: 10px;
}
.charter-item:last-child { margin-bottom: 0; }
.charter-item__icon { color: var(--sage); flex-shrink: 0; }
  .rsite * { box-sizing: border-box; margin: 0; padding: 0; }
  .rsite a { text-decoration: none; color: inherit; }

  .rsite { font-family: 'Inter', sans-serif; background: #F2F5F0; color: #1A2418; max-width: 680px; overflow: hidden; }

  /* NAV */
  .rsite .nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.75rem; background: #1A2E1E; }
  .rsite .nav-logo { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #E4EDE5; letter-spacing: 0.12em; line-height: 1; }
  .rsite .nav-logo .g { color: #6DBF8A; }
  .rsite .nav-links { display: flex; gap: 0.2rem; }
  .rsite .nav-btn { font-size: 0.7rem; color: #a0bfa5; padding: 0.3rem 0.5rem; cursor: pointer; border: none; background: none; font-family: 'Inter', sans-serif; border-radius: 3px; }
  .rsite .nav-btn.active, .rsite .nav-btn:hover { color: #E4EDE5; }
  .rsite .nav-btn.active { color: #6DBF8A; }

  @media (max-width: 640px) {
    /* Le bandeau .tabs juste en dessous reprend déjà ces liens (avec Contact
       inclus) et tient sur un écran étroit ; .nav-links, lui, déborde et
       masque "Contact" sur mobile. On le retire, le logo seul suffit ici. */
    .rsite .nav-links { display: none; }
    /* Avec .nav-links caché, le logo est seul dans .nav ; justify-content:
       space-between le laisse collé à gauche. On le centre explicitement. */
    .rsite .nav { justify-content: center; }
  }

  /* MAIN TABS */
  .rsite .tabs { display: flex; align-items: center; background: #fff; border-bottom: 2px solid #d0d8cc; }
  .rsite .tabs-scroll { display: flex; overflow-x: auto; scrollbar-width: none; flex: 1 1 auto; min-width: 0; }
  .rsite .tabs-scroll::-webkit-scrollbar { display: none; }
  .rsite .tab { flex-shrink: 0; padding: 0.65rem 1rem; font-size: 0.7rem; font-weight: 500; color: #4a5e48; cursor: pointer; border: none; background: none; font-family: 'Inter', sans-serif; border-bottom: 3px solid transparent; white-space: nowrap; margin-bottom: -2px; }
  .rsite .tab.active { color: #1A2E1E; border-bottom-color: #1A2E1E; font-weight: 600; }
  .rsite .tab-don { flex-shrink: 0; align-self: center; margin: 0 0.75rem 0 0.25rem; padding: 0.4rem 0.9rem; font-size: 0.68rem; font-weight: 600; color: #1A2418; background: #C9A84C; border-radius: 20px; text-decoration: none; white-space: nowrap; transition: background 0.15s ease; }
  .rsite .tab-don:hover { background: #d8ba63; }
  .rsite .tab:hover:not(.active) { color: #1A2E1E; background: #f0f4ee; }

  /* SUB TABS */
  .rsite .sub-tabs { display: flex; background: #E8EDE5; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid #c8d4c0; }
  .rsite .sub-tabs::-webkit-scrollbar { display: none; }
  .rsite .sub-tab { flex-shrink: 0; padding: 0.5rem 0.9rem; font-size: 0.68rem; font-weight: 500; color: #5a7a5a; cursor: pointer; border: none; background: none; font-family: 'Inter', sans-serif; border-bottom: 2px solid transparent; white-space: nowrap; margin-bottom: -1px; }
  .rsite .sub-tab.active { color: #1A2E1E; border-bottom-color: #3A7050; font-weight: 600; }
  .rsite .sub-tab:hover:not(.active) { color: #1A2E1E; }

  /* PAGES */
  .rsite .page { display: none; }
  .rsite .page.active { display: block; }
  .rsite .subpage { display: none; }
  .rsite .subpage.active { display: block; }

  /* HERO */
  .rsite .hero { background: #1A2E1E; padding: 2.25rem 1.75rem 1.75rem; }
  .rsite .eyebrow { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #6DBF8A; margin-bottom: 1rem; }
  .rsite .acro-66 { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 1.75rem 2.5rem; margin-bottom: 1.75rem; }
  .rsite .acro-col { display: inline-flex; flex-direction: column; flex: 1 1 340px; }
  .rsite .acro-row { display: flex; align-items: baseline; gap: 0.9rem; padding: 0.3rem 0; border-bottom: 0.5px solid rgba(255,255,255,0.06); }
  .rsite .acro-row:last-child { border-bottom: none; }
  .rsite .acro-L { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 600; color: #6DBF8A; width: 2rem; flex-shrink: 0; transition: font-weight 0.4s ease, text-shadow 0.4s ease, color 0.4s ease, transform 0.4s ease; }
  .rsite .acro-dot { font-size: 0.75rem; color: #9aaa40; opacity: 0.8; flex-shrink: 0; }
  .rsite .acro-W { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #E4EDE5; transition: font-weight 0.4s ease, text-shadow 0.4s ease, color 0.4s ease; }
  .rsite .acro-row.acro-pulse .acro-L { font-weight: 800; color: #b3f0cc; text-shadow: 0 0 10px rgba(155,232,184,1), 0 0 26px rgba(109,191,138,0.95); transform: scale(1.12); }
  .rsite .acro-row.acro-pulse .acro-W { font-weight: 700; color: #ffffff; text-shadow: 0 0 8px rgba(255,255,255,0.9), 0 0 22px rgba(228,237,229,0.8); }

  /* Stat bubbles: round badges that flow freely, not a rigid card grid.
     Sit opposite the acronym, in the space to its right. */
  .rsite .stat-bubbles { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 1.3rem 1.6rem; flex: 1 1 320px; }
  .rsite .stat-bubble { display: flex; flex-direction: column; align-items: center; text-align: center; width: 136px; }
  .rsite .bubble-circle { width: 120px; height: 120px; border-radius: 50%; background: rgba(109,191,138,0.1); border: 1px solid rgba(109,191,138,0.35); display: flex; align-items: center; justify-content: center; margin-bottom: 0.55rem; transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease; }
  .rsite .bubble-circle .num { font-family: 'Playfair Display', serif; font-weight: 700; color: #6DBF8A; font-size: 1.6rem; line-height: 1; transition: color 0.4s ease, text-shadow 0.4s ease; }
  .rsite .bubble-circle.stat-pulse { background: rgba(109,191,138,0.3); border-color: #b3f0cc; box-shadow: 0 0 10px rgba(155,232,184,0.9), 0 0 28px rgba(109,191,138,0.8); transform: scale(1.08); }
  .rsite .bubble-circle.stat-pulse .num { color: #ffffff; text-shadow: 0 0 10px rgba(255,255,255,0.9); }
  .rsite .stat-bubble--lg { width: 148px; }
  .rsite .stat-bubble--lg .bubble-circle { width: 138px; height: 138px; background: rgba(109,191,138,0.16); }
  .rsite .stat-bubble--lg .bubble-circle .num { font-size: 2rem; }
  .rsite .bubble-txt { font-size: 0.66rem; color: #E4EDE5; line-height: 1.4; margin-bottom: 0.25rem; }
  .rsite .bubble-src { font-size: 0.55rem; color: #4a7052; font-style: italic; }

  .rsite .hero-sub { font-size: 0.85rem; line-height: 1.85; color: #7aab82; margin-bottom: 1.5rem; max-width: 440px; }
  .rsite .hero-sub strong { color: #6DBF8A; font-weight: 400; }
  .rsite .hero-sub--center { text-align: center; margin-left: auto; margin-right: auto; }
  .rsite .wave-wrap { margin-top: 1.5rem; opacity: 0.18; }
  .rsite .wave-p { stroke: #6DBF8A; stroke-width: 1.5; fill: none; stroke-dasharray: 800; stroke-dashoffset: 800; animation: rsite-dw 2.5s ease forwards 0.3s; }

  .rsite .btn { display: inline-block; padding: 0.6rem 1.35rem; border-radius: 4px; font-size: 0.78rem; font-weight: 500; cursor: pointer; font-family: 'Inter', sans-serif; border: none; }
  .rsite .btn-green { background: #3A7050; color: #E4EDE5; }
  .rsite .btn-outline { background: transparent; color: #6DBF8A; border: 0.5px solid #3A7050; margin-left: 0.65rem; }

  /* SECTIONS */
  .rsite .sec-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.7rem; }
  .rsite .sl-green { color: #3A7050; } .rsite .sl-lime { color: #5A7820; } .rsite .sl-light { color: #9aaa40; }
  .rsite .sec-h2 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; line-height: 1.3; color: #1A2418; margin-bottom: 0.75rem; }
  .rsite .sec-h2-light { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; line-height: 1.3; color: #E4EDE5; margin-bottom: 0.75rem; }
  .rsite .body { font-size: 0.85rem; line-height: 1.85; color: #4a5e48; }
  .rsite .body-light { font-size: 0.85rem; line-height: 1.85; color: #7aab82; }

  .rsite .sec { padding: 1.75rem; border-bottom: 1px solid #d4dcd0; background: #F2F5F0; }
  .rsite .sec-alt { padding: 1.75rem; border-bottom: 1px solid #d4dcd0; background: #E8EDE5; }
  .rsite .sec-dark { padding: 1.75rem; border-bottom: 1px solid #122016; background: #1A2E1E; }

  /* MISSION BAND */
  .rsite .mission-band { background: #3A7050; padding: 1.35rem 1.75rem; }
  .rsite .mission-band p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.92rem; line-height: 1.8; color: #E4EDE5; }

  /* CONFID */
  .rsite .confid-box { background: rgba(255,255,255,0.04); border-left: 2px solid #9aaa40; padding: 0.85rem 1rem; border-radius: 0 5px 5px 0; margin-top: 1.1rem; }
  .rsite .confid-box p { font-size: 0.8rem; color: #9acc9e; line-height: 1.7; font-style: italic; }

  /* CARDS */
  .rsite .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-top: 1.1rem; }
  .rsite .card { background: #fff; border: 0.5px solid #c8d4c0; border-radius: 8px; padding: 0.9rem; }
  .rsite .card i { font-size: 18px; color: #3A7050; margin-bottom: 0.45rem; display: block; }
  .rsite .card h3 { font-size: 0.775rem; font-weight: 500; color: #1A2418; margin-bottom: 0.25rem; }
  .rsite .card p { font-size: 0.7rem; color: #5a6e58; line-height: 1.55; }
  .rsite .card-sage { background: #EBF3EE; border-color: #6DBF8A; }
  .rsite .card-sage i { color: #2C5E40; }
  .rsite .card-forest { background: #E5EDE0; border-color: #3A7050; }
  .rsite .card-forest i { color: #1A4030; }

  /* DIAG */
  .rsite .diag-alert { display: flex; gap: 0.7rem; background: #EBF5E0; border: 0.5px solid #7A9830; border-radius: 7px; padding: 0.85rem 0.95rem; margin: 0.9rem 0 1.1rem; }
  .rsite .diag-alert i { font-size: 15px; color: #4A7010; flex-shrink: 0; margin-top: 2px; }
  .rsite .diag-alert p { font-size: 0.775rem; line-height: 1.65; color: #2A4010; }
  .rsite .diag-alert strong { font-weight: 500; }
  .rsite .diag-conclu { margin-top: 1rem; padding: 0.85rem 1rem; background: #E5EDE0; border-left: 2px solid #3A7050; border-radius: 0 5px 5px 0; }
  .rsite .diag-conclu p { font-size: 0.8rem; color: #1A3020; line-height: 1.7; }
  .rsite .diag-conclu strong { font-weight: 500; }

  /* ETAPES */
  .rsite .etape { display: flex; gap: 0.8rem; align-items: flex-start; padding-bottom: 1rem; position: relative; }
  .rsite .etape:not(:last-child)::after { content: ''; position: absolute; left: 13px; top: 30px; bottom: 0; width: 1px; background: #b8ccb4; }
  .rsite .e-num { width: 26px; height: 26px; border-radius: 50%; background: #1A2E1E; color: #6DBF8A; font-family: 'Playfair Display', serif; font-size: 0.78rem; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .rsite .etape h3 { font-size: 0.8rem; font-weight: 500; color: #1A2418; margin-bottom: 0.18rem; }
  .rsite .etape p { font-size: 0.72rem; color: #5a6e58; line-height: 1.6; }

  /* CHIFFRES CHOC */
  .rsite .big-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-top: 1.1rem; }
  .rsite .big-stat { background: #1A2E1E; border-radius: 10px; padding: 1.2rem 1rem; text-align: center; }
  .rsite .big-stat .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #6DBF8A; line-height: 1; margin-bottom: 0.4rem; }
  .rsite .big-stat .num.amber { color: #C9A84C; }
  .rsite .big-stat p { font-size: 0.7rem; color: #9acc9e; line-height: 1.55; }
  .rsite .big-stat .source { font-size: 0.6rem; color: #4a7052; margin-top: 0.4rem; font-style: italic; }

  .rsite .silence-bloc { background: #2A4830; border-radius: 10px; padding: 1.2rem; margin-top: 1.1rem; }
  .rsite .silence-bloc h3 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: #c8e8d0; margin-bottom: 0.5rem; }
  .rsite .silence-bloc > p { font-size: 0.8rem; color: #7aab82; line-height: 1.75; margin-bottom: 0.9rem; }
  .rsite .silence-item { display: flex; align-items: flex-start; gap: 10px; padding: 0.7rem 0.9rem; background: rgba(255,255,255,0.04); border-radius: 7px; border-left: 2px solid #6DBF8A; margin-bottom: 0.5rem; }
  .rsite .silence-item:last-child { margin-bottom: 0; }
  .rsite .silence-item .si-num { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: #6DBF8A; line-height: 1; flex-shrink: 0; width: 48px; }
  .rsite .silence-item p { font-size: 0.75rem; color: #c8e8d0; line-height: 1.6; }
  .rsite .silence-item .si-src { font-size: 0.6rem; color: #4a7052; font-style: italic; margin-top: 0.2rem; }

  .rsite .stat-line { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 0; border-bottom: 0.5px solid #d4dcd0; }
  .rsite .stat-line:last-child { border-bottom: none; }
  .rsite .sl-bar-wrap { flex: 1; }
  .rsite .sl-bar-wrap h4 { font-size: 0.78rem; font-weight: 500; color: #1A2418; margin-bottom: 0.35rem; }
  .rsite .sl-bar-wrap p { font-size: 0.68rem; color: #5a6e58; line-height: 1.5; margin-top: 0.2rem; }
  .rsite .bar-outer { background: #d4dcd0; border-radius: 4px; height: 5px; width: 100%; }
  .rsite .bar-inner { height: 5px; border-radius: 4px; background: #4A8060; }
  .rsite .bar-inner.amber { background: #C9A84C; }
  .rsite .bar-pct { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: #3A7050; width: 52px; text-align: right; flex-shrink: 0; }
  .rsite .bar-pct.amber { color: #C9A84C; }

  .rsite .mgmt-highlight { background: #EBF3EE; border: 0.5px solid #6DBF8A; border-radius: 8px; padding: 1.1rem 1.2rem; margin-top: 1.1rem; }
  .rsite .mgmt-highlight p { font-size: 0.83rem; line-height: 1.8; color: #1A3828; }
  .rsite .mgmt-highlight strong { font-weight: 500; color: #1A2E1E; }

  .rsite .cout-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.7rem; margin-top: 1.1rem; }
  .rsite .cout-card { background: #fff; border: 0.5px solid #c8d4c0; border-radius: 8px; padding: 1rem 0.8rem; text-align: center; }
  .rsite .cout-card .cnum { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: #C9A84C; line-height: 1; margin-bottom: 0.35rem; }
  .rsite .cout-card p { font-size: 0.67rem; color: #5a6e58; line-height: 1.55; }
  .rsite .cout-card .csrc { font-size: 0.57rem; color: #9aaa40; margin-top: 0.35rem; font-style: italic; }

  /* LABEL */
  .rsite .label-hero { background: #1A2E1E; padding: 2rem 1.75rem 1.5rem; }
  .rsite .label-badge-row { display: flex; align-items: center; gap: 1.1rem; padding: 1.25rem 1.75rem; background: #E8EDE5; border-bottom: 1px solid #c8d4c0; }
  .rsite .l-badge { width: 60px; height: 60px; border-radius: 50%; background: #1A2E1E; border: 2px solid #3A7050; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
  .rsite .l-badge .lr { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 600; color: #6DBF8A; line-height: 1; }
  .rsite .l-badge .ls { font-size: 6px; letter-spacing: 0.1em; text-transform: uppercase; color: #3A7050; margin-top: 2px; }
  .rsite .label-badge-row h3 { font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 600; color: #1A2418; margin-bottom: 0.3rem; }
  .rsite .label-badge-row p { font-size: 0.73rem; color: #4a5e48; line-height: 1.6; }

  .rsite .valeurs { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.1rem; }
  .rsite .valeur { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 0.5px solid #c8d4c0; border-radius: 8px; padding: 1rem 1.1rem; }
  .rsite .v-icon { width: 36px; height: 36px; border-radius: 8px; background: #EBF3EE; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .rsite .v-icon i { font-size: 17px; color: #3A7050; }
  .rsite .valeur h3 { font-size: 0.82rem; font-weight: 500; color: #1A2418; margin-bottom: 0.2rem; }
  .rsite .valeur p { font-size: 0.73rem; color: #5a6e58; line-height: 1.65; }
  .rsite .valeur strong { font-weight: 500; color: #2A4830; }

  .rsite .perf-bloc { background: #EBF3EE; border-radius: 8px; padding: 1.1rem 1.2rem; margin-top: 1.1rem; border: 0.5px solid #6DBF8A; }
  .rsite .perf-bloc h3 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: #1A2E1E; margin-bottom: 0.4rem; }
  .rsite .perf-bloc p { font-size: 0.8rem; line-height: 1.8; color: #2C5040; }

  .rsite .platform { display: flex; gap: 1rem; align-items: flex-start; background: #E8EDE5; border-top: 2px solid #3A7050; border-bottom: 2px solid #3A7050; padding: 1.25rem 1.75rem; }
  .rsite .p-icon { width: 40px; height: 40px; border-radius: 8px; background: #1A2E1E; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .rsite .p-icon i { font-size: 20px; color: #6DBF8A; }
  .rsite .platform h3 { font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 600; color: #1A2E1E; margin-bottom: 0.3rem; }
  .rsite .platform p { font-size: 0.76rem; color: #2C5040; line-height: 1.7; }

  .rsite .step { display: flex; gap: 0.85rem; padding: 0.9rem 0; border-bottom: 0.5px solid #d4dcd0; align-items: flex-start; }
  .rsite .step:last-child { border-bottom: none; }
  .rsite .s-num { width: 26px; height: 26px; border-radius: 50%; background: #1A2E1E; color: #6DBF8A; font-family: 'Playfair Display', serif; font-size: 0.76rem; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .rsite .s-body h3 { font-size: 0.8rem; font-weight: 500; color: #1A2418; margin-bottom: 0.18rem; }
  .rsite .s-body p { font-size: 0.71rem; color: #5a6e58; line-height: 1.65; }
  .rsite .s-tag { display: inline-block; margin-top: 0.3rem; font-size: 9px; letter-spacing: 0.07em; text-transform: uppercase; padding: 2px 6px; border-radius: 3px; background: #E5EDE0; color: #2C5040; font-weight: 500; }

  .rsite .pills { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1rem; }
  .rsite .pill { font-size: 0.68rem; padding: 0.28rem 0.65rem; border-radius: 20px; border: 0.5px solid #3A7050; color: #3A7050; background: rgba(58,112,80,0.08); }

  .rsite .liberte { background: #1A2E1E; border-radius: 8px; padding: 1.1rem; margin-top: 1.1rem; }
  .rsite .liberte h3 { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: #E4EDE5; margin-bottom: 0.4rem; }
  .rsite .liberte > p { font-size: 0.78rem; color: #9acc9e; line-height: 1.75; margin-bottom: 0.8rem; }
  .rsite .lib-item { display: flex; align-items: flex-start; gap: 7px; font-size: 0.75rem; color: #b8d8c0; line-height: 1.55; margin-bottom: 0.35rem; }
  .rsite .lib-item i { font-size: 13px; color: #6DBF8A; flex-shrink: 0; margin-top: 1px; }

  /* BÉNÉVOLES / PARTENAIRES */
  .rsite .p-list { margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.5rem; }
  .rsite .p-item { display: flex; align-items: flex-start; gap: 8px; padding: 0.65rem 0.9rem; background: #fff; border: 0.5px solid #c8d4c0; border-radius: 7px; }
  .rsite .p-item i { font-size: 14px; color: #3A7050; flex-shrink: 0; margin-top: 2px; }
  .rsite .p-item p { font-size: 0.775rem; color: #1A2418; line-height: 1.5; }

  .rsite .charte { background: #1A2E1E; border-radius: 8px; padding: 1.1rem; margin-top: 1.1rem; }
  .rsite .charte h3 { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: #E4EDE5; margin-bottom: 0.4rem; }
  .rsite .charte > p { font-size: 0.775rem; color: #7aab82; line-height: 1.7; margin-bottom: 0.9rem; }
  .rsite .charte-item { display: flex; align-items: flex-start; gap: 7px; font-size: 0.75rem; color: #9acc9e; line-height: 1.55; margin-bottom: 0.4rem; }
  .rsite .charte-item i { font-size: 13px; color: #6DBF8A; flex-shrink: 0; margin-top: 1px; }

  /* CONTACT */
  .rsite .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-top: 1.1rem; }
  .rsite .c-item { display: flex; gap: 9px; align-items: flex-start; padding: 0.85rem; background: #fff; border: 0.5px solid #c8d4c0; border-radius: 7px; }
  .rsite .c-item i { font-size: 15px; color: #3A7050; flex-shrink: 0; margin-top: 2px; }
  .rsite .ci-label { font-size: 9px; color: #7aab82; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px; }
  .rsite .ci-val { font-size: 0.775rem; color: #1A2418; font-weight: 500; }
  .rsite .reassurance { margin-top: 1rem; display: flex; align-items: center; gap: 8px; padding: 0.65rem 0.85rem; background: #EBF3EE; border: 0.5px solid #6DBF8A; border-radius: 6px; }
  .rsite .reassurance i { font-size: 14px; color: #2C5E40; flex-shrink: 0; }
  .rsite .reassurance p { font-size: 0.75rem; color: #1A3828; line-height: 1.5; margin: 0; }

  /* CONTACT FORM */
  .rsite .r-form { margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.7rem; }
  .rsite .r-form label { font-size: 0.7rem; font-weight: 500; color: #2A4830; margin-bottom: 0.3rem; display: block; }
  .rsite .r-form input, .rsite .r-form select, .rsite .r-form textarea { width: 100%; box-sizing: border-box; font-family: 'Inter', sans-serif; font-size: 0.8rem; padding: 0.6rem 0.7rem; border: 0.5px solid #c8d4c0; border-radius: 6px; background: #fff; color: #1A2418; }
  .rsite .r-form textarea { min-height: 90px; resize: vertical; }
  .rsite .r-form .r-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .rsite .r-form .r-check { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.68rem; color: #5a6e58; line-height: 1.5; }
  .rsite .r-form .r-check input { width: auto; margin-top: 2px; }
  .rsite .r-form .r-note { font-size: 0.65rem; color: #7a8a76; margin: 0; }
  .rsite .r-form .r-sent { display: none; margin-top: 0.5rem; font-size: 0.75rem; color: #2C5E40; }
  .rsite .r-slots { display: flex; flex-wrap: wrap; gap: 0.45rem; }
  .rsite .r-slot { font-size: 0.68rem; padding: 0.4rem 0.7rem; border-radius: 20px; border: 0.5px solid #3A7050; color: #3A7050; background: rgba(58,112,80,0.08); cursor: pointer; transition: background 0.15s ease, color 0.15s ease; }
  .rsite .r-slot:hover { background: rgba(58,112,80,0.16); }
  .rsite .r-slot.active { background: #3A7050; color: #fff; }
  .rsite .r-slots.disabled { opacity: 0.4; pointer-events: none; }
  .rsite .r-more { margin-top: 0.55rem; font-size: 0.68rem; color: #3A7050; background: none; border: none; padding: 0; cursor: pointer; text-decoration: underline; font-family: 'Inter', sans-serif; }
  .rsite .r-more:disabled { color: #a8b8a4; cursor: default; text-decoration: none; }

  /* CONCLU CHIFFRES */
  .rsite .conclu { background: #3A7050; padding: 1.5rem 1.75rem; }
  .rsite .conclu p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.95rem; line-height: 1.8; color: #E4EDE5; margin-bottom: 1rem; }
  .rsite .conclu-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.76rem; color: #c8e8d0; line-height: 1.55; margin-bottom: 0.4rem; }
  .rsite .conclu-item i { font-size: 13px; color: #E4EDE5; flex-shrink: 0; margin-top: 1px; }

  .rsite .footer { padding: 1.1rem 1.75rem; background: #122016; display: flex; align-items: center; justify-content: space-between; }
  .rsite .footer p { font-size: 0.68rem; color: #3a5a40; }
  .rsite .footer-logo { font-family: 'Playfair Display', serif; font-size: 0.72rem; color: #3A7050; letter-spacing: 0.08em; }

@keyframes rsite-dw { to { stroke-dashoffset: 0; } }

/* Full-width layout: sections stay edge-to-edge across the whole page,
   while their content is centered and capped at a comfortable reading
   width via responsive left/right padding (no extra wrapper markup). */
body:has(.rsite) { background: #F2F5F0; }
.rsite-shell { display: block; }
.rsite {
  --edge: max(1.75rem, calc((100% - 1180px) / 2));
  max-width: none;
  width: 100%;
  box-shadow: none;
  border-radius: 0;
}

.rsite .nav { padding-left: var(--edge); padding-right: var(--edge); }
.rsite .tabs { padding-left: var(--edge); padding-right: var(--edge); }
.rsite .sub-tabs { padding-left: var(--edge); padding-right: var(--edge); }
.rsite .hero { padding-left: var(--edge); padding-right: var(--edge); }
.rsite .label-hero { padding-left: var(--edge); padding-right: var(--edge); }
.rsite .sec { padding-left: var(--edge); padding-right: var(--edge); }
.rsite .sec-alt { padding-left: var(--edge); padding-right: var(--edge); }
.rsite .sec-dark { padding-left: var(--edge); padding-right: var(--edge); }
.rsite .mission-band { padding-left: var(--edge); padding-right: var(--edge); }
.rsite .label-badge-row { padding-left: var(--edge); padding-right: var(--edge); }
.rsite .platform { padding-left: var(--edge); padding-right: var(--edge); }
.rsite .conclu { padding-left: var(--edge); padding-right: var(--edge); }
.rsite .footer { padding-left: var(--edge); padding-right: var(--edge); }

/* Under 640px (same breakpoint as hiding .nav-links above, i.e. whenever
   the tabs bar is the only nav), the 4 tabs + "Faire un don" need more
   width than narrower/larger phones have, pushing "Contact" out of view.
   Tighten paddings so everything fits, and center the whole row. */
@media (max-width: 640px) {
  .rsite .tabs { padding-left: 0.75rem; padding-right: 0.75rem; justify-content: center; }
  .rsite .tabs-scroll { flex: 0 1 auto; }
  .rsite .tab { padding: 0.6rem 0.55rem; font-size: 0.66rem; }
  .rsite .tab-don { margin: 0 0.4rem 0 0.15rem; padding: 0.35rem 0.65rem; font-size: 0.64rem; }
}

/* Hero identity block and grids get a little more breathing room once
   the column is wider than the original mobile-card design. */
@media (min-width: 900px) {
  .rsite .acro-66 { max-width: 980px; margin-left: auto; margin-right: auto; }
  .rsite .hero-sub { max-width: 600px; }
  .rsite .grid2 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
  .rsite .big-stats { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
  .rsite .cout-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
  .rsite .contact-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

/* Random "pulse" on the chiffres page: one stat number at a time is
   momentarily emphasized (scale + glow), moving between figures. */
.rsite .big-stat .num,
.rsite .silence-item .si-num,
.rsite .stat-line .bar-pct,
.rsite .cout-card .cnum {
  display: inline-block;
  transition: transform 0.45s ease, filter 0.45s ease;
}
.rsite .stat-pulse {
  transform: scale(1.24);
  filter: brightness(1.45) drop-shadow(0 0 14px currentColor);
}

/* Give the "impact économique" figures more visual weight — they carry
   the core B2B argument and shouldn't read smaller than the other stats. */
.rsite .cout-card { padding: 1.3rem 1rem; }
.rsite .cout-card .cnum { font-size: 2rem; margin-bottom: 0.5rem; }
.rsite .cout-card p { font-size: 0.73rem; }


