/* ============================================================
   SHIKOWA — CSS Global
   Design system : chaleureux, communautaire, diaspora africaine
   Fonts : Playfair Display (titres) + DM Sans (corps)
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --ink:        #0e0c09;
  --cream:      #f5f0e8;
  --gold:       #c9922a;
  --gold-dark:  #a87520;
  --terracotta: #c4573a;
  --sage:       #4a6741;
  --sand:       #d4b896;
  --warm-white: #faf7f2;
  --ink-light:  rgba(14,12,9,0.6);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-card: 0 2px 12px rgba(14,12,9,0.08);
  --shadow-md:   0 4px 24px rgba(14,12,9,0.12);

  --max-width: 1180px;
  --gap: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--warm-white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Grain overlay ──────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--ink-light);
  line-height: 1.7;
}

.label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--ink-light);
}

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--sm {
  padding: 3rem 0;
}

.section--dark {
  background-color: var(--ink);
  color: var(--cream);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--cream);
}

.section--dark .lead {
  color: rgba(245,240,232,0.75);
}

.section--cream {
  background-color: var(--cream);
}

.section--sand {
  background-color: #ede8de;
}

.grid {
  display: grid;
  gap: var(--gap);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; gap: var(--gap); }
.flex--center { align-items: center; }
.flex--between { justify-content: space-between; }
.flex--wrap { flex-wrap: wrap; }

.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.text-terracotta { color: var(--terracotta); }
.text-sage    { color: var(--sage); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn--primary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,146,42,0.35);
}

.btn--secondary {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--secondary:hover {
  background-color: var(--gold);
  color: #fff;
  text-decoration: none;
}

.btn--light {
  background-color: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn--light:hover {
  background-color: #fff;
  text-decoration: none;
}

.btn--dark-outline {
  background-color: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.4);
}

.btn--dark-outline:hover {
  background-color: rgba(245,240,232,0.1);
  text-decoration: none;
}

.btn--sm {
  padding: 9px 18px;
  font-size: 0.9rem;
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 2rem;
}

.card--white {
  background: #fff;
}

.card--dark {
  background: var(--ink);
  color: var(--cream);
}

.card--gold {
  background: var(--gold);
  color: #fff;
}

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.badge--paid    { background: var(--sage);        color: #fff; }
.badge--pending { background: var(--gold);        color: #fff; }
.badge--late    { background: var(--terracotta);  color: #fff; }
.badge--soon    { background: var(--sand);        color: var(--ink); }
.badge--info    { background: var(--cream);       color: var(--ink); border: 1px solid var(--sand); }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav__logo:hover { text-decoration: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--gold);
  text-decoration: none;
}

.nav__links a.active {
  color: var(--gold);
  font-weight: 600;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile nav */
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero section ───────────────────────────────────────────── */
.hero {
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero--dark {
  background-color: var(--ink);
  color: var(--cream);
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
  padding: 6px 14px;
  background: rgba(201,146,42,0.12);
  border-radius: 20px;
  border: 1px solid rgba(201,146,42,0.25);
}

.hero h1 .accent {
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terracotta);
  border-radius: 2px;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── Calculator / Simulator ─────────────────────────────────── */
.calc-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
}

.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.calc-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.calc-group .calc-value {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}

/* Slider */
input[type='range'] {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  background: var(--sand);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(201,146,42,0.4);
  transition: transform 0.15s;
}

input[type='range']::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

input[type='range']::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(201,146,42,0.4);
}

/* Toggle frequency */
.toggle-group {
  display: flex;
  background: #e8e2d8;
  border-radius: var(--radius-sm);
  padding: 3px;
}

.toggle-group button {
  flex: 1;
  padding: 8px 16px;
  border: none;
  background: transparent;
  border-radius: calc(var(--radius-sm) - 2px);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--ink-light);
}

.toggle-group button.active {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(201,146,42,0.3);
}

/* Calc result */
.calc-result {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--warm-white);
  border-radius: var(--radius-md);
  border: 2px solid rgba(201,146,42,0.2);
  text-align: center;
}

.calc-result__label {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-bottom: 0.25rem;
}

.calc-result__amount {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.calc-result__sub {
  font-size: 0.95rem;
  color: var(--ink-light);
}

/* Comparateur bancaire */
.comparateur {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--sand);
}

.comparateur h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ink);
}

.comparateur__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid #ede8de;
}

.comparateur__row:last-child { border-bottom: none; }

.comparateur__label { font-size: 0.9rem; color: var(--ink-light); }

.comparateur__value--zero {
  font-weight: 700;
  color: var(--sage);
  font-size: 1.05rem;
}

.comparateur__value--bank {
  font-weight: 700;
  color: var(--terracotta);
  font-size: 1.05rem;
}

.mention-legale {
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-top: 0.75rem;
  font-style: italic;
}

/* ── Réassurance 4 cols ─────────────────────────────────────── */
.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.reassurance-item {
  padding: 1.75rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s;
}

.reassurance-item:hover {
  transform: translateY(-3px);
}

.reassurance-item__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.reassurance-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.reassurance-item p {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-bottom: 0;
}

/* ── Projection cards ───────────────────────────────────────── */
.projection-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.projection-card {
  padding: 2rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
}

.projection-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.projection-card__amount {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.projection-card__desc { font-size: 0.9rem; color: var(--ink-light); }

/* ── Waitlist form ──────────────────────────────────────────── */
.form-waitlist {
  max-width: 680px;
  margin: 0 auto;
}

.form-section-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  margin-top: 1.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--sand);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.form-group .optional {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-left: 0.25rem;
}

.form-group input[type='text'],
.form-group input[type='email'],
.form-group input[type='tel'],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,146,42,0.12);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230e0c09' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Radio + checkbox groups */
.radio-group, .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.radio-group label,
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 400;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--sand);
  background: #fff;
  transition: all 0.15s;
}

.radio-group label:hover,
.checkbox-group label:hover {
  border-color: var(--gold);
  background: rgba(201,146,42,0.04);
}

.radio-group input[type='radio'],
.checkbox-group input[type='checkbox'] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Form alerts */
.form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.form-alert--success {
  background: rgba(74,103,65,0.1);
  border: 1px solid var(--sage);
  color: var(--sage);
}

.form-alert--error {
  background: rgba(196,87,58,0.1);
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
}

/* ── Dashboard mockup ───────────────────────────────────────── */
.dashboard-mockup {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2rem;
  font-family: var(--font-sans);
  box-shadow: var(--shadow-md);
  max-width: 560px;
}

.dashboard-mockup__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(245,240,232,0.15);
}

.dashboard-mockup__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.dashboard-mockup__meta {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
}

.dashboard-mockup__amount {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: 0.5rem;
}

.member-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}

.member-row:last-child { border-bottom: none; }

.member-row__name {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 500;
}

.member-row__detail {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.45);
  margin-top: 1px;
}

/* ── Étapes ─────────────────────────────────────────────────── */
.steps {
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.step__number {
  counter-increment: step;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201,146,42,0.3);
}

.step__content h3 {
  margin-bottom: 0.5rem;
}

.step__content p {
  color: var(--ink-light);
  font-size: 0.95rem;
}

/* ── FAQ accordion ──────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--sand);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--gold); }

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-question.open::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--ink-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer.open { display: block; }

/* ── Table ──────────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th {
  background: var(--cream);
  padding: 0.9rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--sand);
}

td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #ede8de;
  vertical-align: middle;
}

tr:hover td { background: rgba(201,146,42,0.04); }

/* ── Pricing grid ───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--sand);
}

.pricing-card--featured {
  border-color: var(--gold);
  background: #fff;
}

.pricing-card--featured:hover {
  border-color: var(--gold-dark);
}

.pricing-card__badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.pricing-card--soon .pricing-card__badge {
  background: var(--sand);
  color: var(--ink);
}

.pricing-card--custom .pricing-card__badge {
  background: var(--terracotta);
}

.pricing-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-card__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-light);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #ede8de;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '✅';
  flex-shrink: 0;
  font-size: 0.85rem;
}

.pricing-features li.no::before {
  content: '—';
  color: var(--ink-light);
}

/* ── Mission pillars ────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pillar {
  padding: 2.5rem 2rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--gold);
}

.pillar h3 { margin-bottom: 0.75rem; }
.pillar p { color: var(--ink-light); font-size: 0.95rem; }

/* ── Impact numbers ─────────────────────────────────────────── */
.impact-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.impact-number__value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.impact-number__label {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.3;
}

/* ── Problem/Solution mirror ────────────────────────────────── */
.ps-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}

.ps-problem {
  background: #f7ede9;
  padding: 1.75rem;
  border-right: 1px solid rgba(196,87,58,0.15);
}

.ps-solution {
  background: var(--cream);
  padding: 1.75rem;
}

.ps-problem__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ps-solution__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ps-problem p { color: var(--terracotta); font-style: italic; margin-bottom: 0; font-size: 0.95rem; }
.ps-solution h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.ps-solution p { color: var(--ink-light); margin-bottom: 0; font-size: 0.9rem; }

/* ── Bandeau promo ──────────────────────────────────────────── */
.bandeau {
  background: var(--gold);
  color: #fff;
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.6;
  max-width: 300px;
}

.footer__heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 1rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: rgba(245,240,232,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(245,240,232,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__legal {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
  max-width: 500px;
  line-height: 1.5;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
}

/* ── Roadmap table ──────────────────────────────────────────── */
.roadmap-table td:last-child {
  font-weight: 600;
  color: var(--gold);
}

/* ── Merci page ─────────────────────────────────────────────── */
.merci-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 6rem 0;
  background: var(--ink);
}

.merci-position {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

/* ── Exemples simulateur ────────────────────────────────────── */
.exemple-card {
  cursor: pointer;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exemple-card:hover, .exemple-card:focus {
  border-color: var(--gold);
  background: #fff;
  transform: translateY(-2px);
}

.exemple-card__title { font-weight: 600; font-size: 0.95rem; }
.exemple-card__detail { font-size: 0.82rem; color: var(--ink-light); margin-top: 2px; }
.exemple-card__amount {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

/* ── Section divider ────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--terracotta);
  border-radius: 2px;
  margin: 0 auto 2rem;
}

.divider--left {
  margin: 0 0 2rem;
}

/* ── Engagement list ────────────────────────────────────────── */
.engagement-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 680px;
  margin: 0 auto;
}

.engagement-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(245,240,232,0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245,240,232,0.1);
}

.engagement-list li .icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.engagement-list li .text strong { display: block; margin-bottom: 0.2rem; color: var(--cream); }
.engagement-list li .text span { font-size: 0.9rem; color: rgba(245,240,232,0.6); }

/* ── Storytelling dark ──────────────────────────────────────── */
.story-text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.8;
  color: var(--cream);
  max-width: 720px;
  margin: 0 auto;
}

.story-text em {
  color: var(--gold);
  font-style: italic;
}

/* ── Benefits list waitlist page ────────────────────────────── */
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--cream);
}

.benefits-list li::before {
  content: '✅';
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .reassurance-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-numbers { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --gap: 1rem; }

  .section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0 3rem; }

  /* Nav mobile */
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--sand);
    gap: 1rem;
    z-index: 99;
    box-shadow: var(--shadow-md);
  }

  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1.05rem; padding: 0.5rem 0; }

  .nav__cta .btn { display: none; }
  .nav__cta .btn:last-child { display: inline-flex; }

  .nav__hamburger { display: flex; }
  .nav { position: sticky; }

  /* Grids */
  .grid--2,
  .grid--3,
  .pillars,
  .pricing-grid,
  .projection-cards,
  .reassurance-grid { grid-template-columns: 1fr; }

  .calc-inputs { grid-template-columns: 1fr; }

  .ps-block { grid-template-columns: 1fr; }
  .ps-problem { border-right: none; border-bottom: 1px solid rgba(196,87,58,0.15); }

  .step { grid-template-columns: 48px 1fr; }
  .step__number { width: 48px; height: 48px; font-size: 1.2rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .form-grid-2 { grid-template-columns: 1fr; }

  .impact-numbers { grid-template-columns: repeat(2, 1fr); }

  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .share-buttons { flex-direction: column; align-items: center; }

  /* Replace sliders with number inputs on mobile */
  .slider-mobile-hide { display: none; }
  .mobile-number-input { display: block; }
}

@media (min-width: 769px) {
  .mobile-number-input { display: none; }
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

.fade-up--delay-1 { animation-delay: 0.15s; }
.fade-up--delay-2 { animation-delay: 0.3s; }
.fade-up--delay-3 { animation-delay: 0.45s; }

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--warm-white); }
::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── Selection ──────────────────────────────────────────────── */
::selection {
  background: rgba(201,146,42,0.2);
  color: var(--ink);
}
