/* ============================================================
   DIDIER RENARD — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600&display=swap');

/* ── Palette « Terre & Ocre » — tokens Claude Design ───── */
:root {
  --navy:        #36302A;   /* brun-terre profond (ex navy)      */
  --navy-light:  #4A3D2E;   /* variante plus claire (gradients)  */
  --gold:        #97742F;   /* accent ocre (ex gold)             */
  --gold-light:  #B8924A;   /* ocre clair (hover, halo)          */
  --white:       #FFFFFF;
  --off-white:   #F3EEE4;   /* fond de page chaud (ex off-white) */
  --gray-light:  #E7E0D2;   /* section alternée (ex gray-light)  */
  --gray:        #6B6457;   /* texte muted (ex gray)             */
  --text:        #2E2A22;   /* texte courant                     */
  --text-light:  #6B6457;   /* texte secondaire                  */
  --border:      #DCD4C4;   /* filets / séparateurs              */

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

  --radius:      6px;
  --radius-lg:   12px;
  --shadow:      0 2px 12px rgba(54,48,42,.08);
  --shadow-lg:   0 8px 32px rgba(54,48,42,.12);

  --max-w:       1160px;
  --section-py:  80px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text); background: var(--off-white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-py) 0; }
.section--alt { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }

.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-sans); }
p { color: var(--text-light); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section__title { margin-bottom: 12px; }
.section__subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 640px; margin-bottom: 48px; }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,.75); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold); color: var(--navy);
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(151,116,47,.35); }
.btn--outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,248,241,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex; flex-direction: column; line-height: 1.2;
}
.nav__logo-name {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--navy);
}
.nav__logo-sub {
  font-size: .65rem; font-weight: 500; letter-spacing: .08em; color: var(--gray); text-transform: uppercase;
}
.nav__links {
  display: flex; align-items: center; gap: 28px;
}
.nav__links a {
  font-size: .875rem; font-weight: 500; color: var(--text-light);
  transition: color .15s;
  position: relative;
}
.nav__links a:hover, .nav__links a.active { color: var(--navy); }
.nav__links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold); border-radius: 1px;
}
.nav__cta { margin-left: 12px; background: var(--navy); color: var(--off-white) !important; }
.nav__cta:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(54,48,42,.25); }
.nav__burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .2s; }

/* Mobile nav */
@media (max-width: 860px) {
  .nav__links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #FBF8F1; border-bottom: 1px solid var(--border); flex-direction: column; padding: 20px 24px; gap: 20px; box-shadow: var(--shadow-lg); }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #5C4A33 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(151,116,47,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center; }
.hero__eyebrow { font-size: .75rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 36px; max-width: 540px; }
.hero__card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(4px);
}
.hero__card-quote {
  font-family: var(--font-serif); font-size: 1rem; font-style: italic;
  color: rgba(255,255,255,.9); line-height: 1.7; margin-bottom: 20px;
}
.hero__card-quote::before { content: '\201C'; font-size: 1.4rem; color: var(--gold); line-height: 0; vertical-align: -4px; margin-right: 2px; }
.hero__card-sig { font-size: .8rem; color: rgba(255,255,255,.5); }
.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px; padding: 5px 14px;
  font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.85);
}
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { display: none; }
}

/* ── Profile cards ──────────────────────────────────────── */
.profiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.profile-card {
  background: #FBF8F1; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all .2s; cursor: default;
  position: relative; overflow: hidden;
}
.profile-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transition: transform .2s; transform-origin: left;
}
.profile-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.profile-card:hover::before { transform: scaleX(1); }
.profile-card__icon { font-size: 1.8rem; margin-bottom: 16px; }
.profile-card__visa { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.profile-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.profile-card p { font-size: .875rem; }
.profile-card__range { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); font-size: .8rem; font-weight: 600; color: var(--navy); }
.profile-card__note { font-size: .7rem; font-weight: 400; color: var(--gray); }
.profiles__footnotes { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 4px 24px; }
.profiles__footnotes p { font-size: .75rem; color: var(--gray); margin: 0; line-height: 1.6; }
@media (max-width: 860px) { .profiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .profiles { grid-template-columns: 1fr; } }

/* ── Differentiators ────────────────────────────────────── */
.diffs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.diff { display: flex; gap: 20px; }
.diff__icon { flex-shrink: 0; width: 48px; height: 48px; background: var(--off-white); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.diff__body h4 { margin-bottom: 6px; }
.diff__body p { font-size: .9rem; }
@media (max-width: 640px) { .diffs { grid-template-columns: 1fr; } }

/* ── Roadmap preview ────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.step-mini {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: 24px 20px; border-radius: var(--radius);
  transition: background .2s;
}
.step-mini:hover { background: rgba(255,255,255,.1); }
.step-mini__num { font-size: .75rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; letter-spacing: .05em; }
.step-mini h4 { font-family: var(--font-serif); color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.step-mini p { font-size: .8rem; color: rgba(255,255,255,.6); margin: 0; }
@media (max-width: 860px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── Testimonial ────────────────────────────────────────── */
.testimonial {
  background: #FBF8F1; border-radius: var(--radius-lg);
  padding: 40px 48px; border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
  max-width: 720px; margin: 0 auto;
}
.testimonial__text { font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; color: var(--navy); margin-bottom: 20px; line-height: 1.7; }
.testimonial__author { font-size: .85rem; font-weight: 600; color: var(--text); }
.testimonial__detail { font-size: .8rem; color: var(--gray); }
.testimonial--placeholder { border-color: var(--border); background: var(--off-white); opacity: .6; }

/* ── Blog preview ───────────────────────────────────────── */
.articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card {
  background: #FBF8F1; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow .2s;
}
.article-card:hover { box-shadow: var(--shadow-lg); }
.article-card__img {
  height: 160px; background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--gray); font-style: italic;
}
.article-card__body { padding: 24px; }
.article-card__cat { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.article-card h3 { font-size: 1rem; margin-bottom: 10px; }
.article-card p { font-size: .85rem; }
.article-card__link { display: inline-flex; align-items: center; gap: 4px; margin-top: 16px; font-size: .85rem; font-weight: 600; color: var(--navy); }
@media (max-width: 720px) { .articles { grid-template-columns: 1fr; } }

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--navy); text-align: center; padding: 80px 24px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── About page ─────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--gray); font-size: .85rem;
  border: 2px dashed var(--border);
}
.photo-placeholder__initials {
  width: 72px; height: 72px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); font-weight: 700;
}
.credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.cred {
  background: var(--off-white); border-radius: var(--radius);
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
}
.cred__val { font-size: 1.2rem; font-weight: 700; color: var(--navy); font-family: var(--font-serif); }
.cred__lbl { font-size: .75rem; color: var(--text-light); margin-top: 2px; }
.about-quote {
  background: var(--navy); color: var(--white);
  padding: 40px; border-radius: var(--radius-lg);
  margin-top: 40px;
}
.about-quote p { color: rgba(255,255,255,.85); font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; line-height: 1.8; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } .photo-placeholder { aspect-ratio: 16/7; } }

/* ── Services page ──────────────────────────────────────── */
.service-block {
  background: #FBF8F1; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 32px; box-shadow: var(--shadow);
}
.service-block__header {
  background: var(--navy); padding: 32px 40px;
  display: flex; justify-content: space-between; align-items: center;
}
.service-block__header h3 { color: var(--white); font-size: 1.3rem; }
.service-block__range { background: var(--gold); color: var(--navy); padding: 6px 16px; border-radius: 20px; font-size: .8rem; font-weight: 700; white-space: nowrap; }
.service-block__body { padding: 40px; }
.service-block__body p { color: var(--text-light); margin-bottom: 24px; }
.pricing-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.pricing-table th { background: var(--off-white); font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-light); padding: 12px 16px; text-align: left; }
.pricing-table td { padding: 14px 16px; border-top: 1px solid var(--border); font-size: .9rem; }
.pricing-table td strong { color: var(--navy); }
.pricing-table tr:hover td { background: var(--off-white); }
.note { background: var(--off-white); border-left: 3px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; font-size: .875rem; color: var(--text-light); margin-top: 24px; }

/* ── Roadmap full page ───────────────────────────────────── */
.roadmap-timeline { position: relative; padding-left: 48px; }
.roadmap-timeline::before {
  content: ''; position: absolute; left: 18px; top: 0; bottom: 0;
  width: 2px; background: var(--gray-light);
}
.phase {
  position: relative; margin-bottom: 48px;
  background: #FBF8F1; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.phase::before {
  content: ''; position: absolute; left: -38px; top: 28px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold-light);
}
.phase__header {
  padding: 24px 32px; background: var(--navy);
  display: flex; align-items: center; gap: 16px; cursor: pointer;
  user-select: none;
}
.phase__num {
  width: 36px; height: 36px; background: rgba(255,255,255,.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.phase__title { color: var(--white); font-size: 1.05rem; font-family: var(--font-serif); flex: 1; }
.phase__dur { font-size: .75rem; color: rgba(255,255,255,.5); white-space: nowrap; }
.phase__chevron { color: rgba(255,255,255,.4); transition: transform .25s; }
.phase.open .phase__chevron { transform: rotate(180deg); }
.phase__body { display: none; padding: 32px; }
.phase.open .phase__body { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.phase__col h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.phase__col ul { }
.phase__col li { font-size: .875rem; color: var(--text-light); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; }
.phase__col li::before { content: '→'; color: var(--gold); flex-shrink: 0; }
.phase__col li:last-child { border-bottom: none; }
.phase__deliverable {
  grid-column: 1 / -1;
  background: var(--off-white); border-radius: var(--radius);
  padding: 16px 20px; border-left: 3px solid var(--gold);
}
.phase__deliverable h4 { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.phase__deliverable p { font-size: .875rem; margin: 0; }
@media (max-width: 640px) { .phase.open .phase__body { grid-template-columns: 1fr; } }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy); font-weight: 600;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; color: var(--navy); transition: all .2s; }
.faq-item.open .faq-icon { background: var(--navy); color: var(--white); transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 24px; }
.faq-a p { font-size: .925rem; }
.faq-item.open .faq-a { display: block; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 64px; }
.contact-info h3 { margin-bottom: 24px; }
.contact-method { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-method__icon { width: 40px; height: 40px; background: var(--off-white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-method h4 { margin-bottom: 2px; font-size: .9rem; }
.contact-method p { font-size: .85rem; margin: 0; }
.contact-form { background: var(--off-white); border-radius: var(--radius-lg); padding: 36px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  background: #FBF8F1; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-sans); font-size: .9rem; color: var(--text);
  outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .75rem; color: var(--gray); margin-top: 16px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── Blog ────────────────────────────────────────────────── */
.blog-hero { background: var(--navy); padding: 60px 0; color: var(--white); }
.blog-hero h1 { color: var(--white); }
.blog-hero p { color: rgba(255,255,255,.7); }
.blog-categories { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.cat-btn { padding: 8px 18px; border-radius: 20px; border: 1.5px solid var(--border); font-size: .8rem; font-weight: 500; cursor: pointer; background: #FBF8F1; color: var(--text-light); transition: all .2s; }
.cat-btn:hover, .cat-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 720px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── Page header ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 0; color: var(--white);
}
.page-hero .tag {
  font-size: 1rem;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 580px; margin: 0; }

/* ── Footer ─────────────────────────────────────────────── */
.footer { background: #1A1510; padding: 60px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand-name { font-family: var(--font-serif); font-size: 1.25rem; color: var(--white); margin-bottom: 8px; }
.footer__brand-sub { font-size: .75rem; color: rgba(255,255,255,.4); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer__brand-desc { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer__col-title { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .15s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: .75rem; color: rgba(255,255,255,.3); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: .75rem; color: rgba(255,255,255,.3); }
@media (max-width: 640px) { .footer__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── Misc ────────────────────────────────────────────────── */
.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0 32px; }
.badge-wc { display: inline-flex; align-items: center; gap: 8px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 14px; font-size: .8rem; color: var(--text-light); margin-top: 20px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Dropdown nav ──────────────────────────────────────────── */
.nav__dropdown {
  position: relative;
  align-self: stretch;       /* occupe toute la hauteur du nav */
  display: flex;
  align-items: center;
}
.nav__dropdown > a {
  display: flex; align-items: center; gap: 5px;
  height: 100%;              /* zone de clic sur toute la hauteur */
}
.nav__dropdown > a::after { content: '▾'; font-size: .65rem; line-height: 1; }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;                 /* collé au bas du nav, pas de gap */
  left: -16px;
  background: #FBF8F1;
  border: 1px solid var(--border);
  border-top: none;          /* raccord visuel avec le nav */
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 6px 0;
  z-index: 200;
}
/* Pont invisible : évite que le menu ferme pendant le trajet souris */
.nav__dropdown-menu::before {
  content: '';
  position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu { display: block; }
.nav__dropdown-menu li a {
  display: block; padding: 10px 20px;
  font-size: .85rem; color: var(--text-light);
  transition: all .15s;
}
.nav__dropdown-menu li a::after { display: none !important; }
.nav__dropdown-menu li a:hover { color: var(--navy); background: var(--gray-light); }
@media (max-width: 860px) {
  .nav__dropdown { align-self: auto; display: block; }
  .nav__dropdown > a { height: auto; }
  .nav__dropdown-menu {
    display: block; position: static;
    box-shadow: none; border: none;
    border-left: 2px solid var(--border);
    border-radius: 0; padding: 0 0 0 12px;
    margin: 4px 0 8px; min-width: auto;
  }
  .nav__dropdown-menu::before { display: none; }
  .nav__dropdown-menu li a { padding: 7px 10px; font-size: .8rem; }
}

/* ── Profile card actions ──────────────────────────────────── */
.profile-card__actions {
  margin-top: 20px;
  display: flex; gap: 8px;
}
.profile-card__actions .btn {
  flex: 1; justify-content: center;
  font-size: .78rem; padding: 9px 10px;
}

/* ── Tarifs section (bas des pages roadmap) ────────────────── */
.tarifs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 32px;
}
.tarifs-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 28px;
}
.tarifs-card__label {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.tarifs-item { margin-bottom: 16px; }
.tarifs-item:last-child { margin-bottom: 0; }
.tarifs-item__key {
  font-size: .7rem; color: rgba(255,255,255,.45); margin-bottom: 4px;
}
.tarifs-item__val {
  font-size: 1.5rem; font-family: var(--font-serif);
  font-weight: 600; color: white; line-height: 1.1;
}
.tarifs-item__sub { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 3px; }
.tarifs-item__muted {
  font-size: .9rem; color: rgba(255,255,255,.6); font-weight: 400;
}
.tarifs-note {
  background: rgba(151,116,47,.15);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; font-size: .875rem; color: rgba(255,255,255,.75);
}
@media (max-width: 580px) { .tarifs-grid { grid-template-columns: 1fr; } }
