/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   landing.css — Mon Cercle public landing page
   Mobile-first, breakpoint: 768px
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Variables ───────────────────────────────────────────────────────────── */
:root {
  --ink:        #1A1208;
  --tc:         #C45A2A;
  --parch:      #FAF5EE;
  --sand:       #F5EDE0;
  --mist:       #9B8E82;
  --mist-light: #C4B8AC;
  --line:       rgba(196, 90, 42, 0.15);
  --white:      #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --radius:     14px;
}

/* ── Base ────────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

/* ── Utilitaires ─────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 72px 0; }
.section--sm { padding: 48px 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  transition: opacity 150ms, transform 100ms;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; }
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--tc);
  color: var(--white);
}
.btn--ghost {
  background: none;
  border: 1px solid rgba(196, 90, 42, 0.3);
  color: var(--tc);
}
.btn--ghost-light {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tc);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--mist);
  max-width: 580px;
  margin: 0 auto 48px;
}

/* ── Logo ────────────────────────────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-svg { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--parch);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--mist);
}
.nav-lang a {
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 120ms;
}
.nav-lang a:hover { background: var(--sand); color: var(--ink); }
.nav-lang a.active { font-weight: 600; color: var(--ink); }
.nav-lang .sep { color: var(--mist-light); }

.nav-login {
  font-size: 13px;
  font-weight: 500;
  color: var(--mist);
  padding: 8px 14px;
  border-radius: 20px;
  transition: all 120ms;
}
.nav-login:hover { color: var(--ink); background: var(--sand); }

.nav-btn-register {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  background: var(--tc);
  padding: 8px 18px;
  border-radius: 20px;
  transition: opacity 150ms;
}
.nav-btn-register:hover { opacity: 0.88; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  background: var(--parch);
  position: relative;
  overflow: hidden;
  padding: 64px 0 56px;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-ornaments {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-ornament {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--tc);
  opacity: 0.06;
}

/* Hero texte */
.hero-content { flex: 1; }
.hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--tc);
}
.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--mist);
}
.hero-trust-item svg { width: 14px; height: 14px; color: var(--tc); }

/* Hero visual placeholder */
.hero-visual {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.screenshot-placeholder {
  background: var(--sand);
  border: 1px dashed rgba(196,90,42,0.3);
  border-radius: 14px;
  min-height: 300px;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screenshot-placeholder span {
  font-size: 13px;
  color: var(--mist);
  font-family: var(--font-body);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MODULES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.modules { background: var(--white); }
.modules-header { text-align: center; }

.modules-carousel-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.modules-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollModules 50s linear infinite;
}

.modules-track:hover { animation-play-state: paused; }

@keyframes scrollModules {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.module-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 200ms, border-color 200ms;
}
.module-card:hover {
  box-shadow: 0 8px 24px rgba(26,18,8,0.07);
  border-color: rgba(196, 90, 42, 0.25);
}
.module-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.module-icon svg { width: 20px; height: 20px; }
.module-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  font-family: var(--font-body);
  padding: 2px 8px;
  border-radius: 20px;
  width: fit-content;
}
.badge--circle    { background: rgba(26,18,8,1); color: #fff; }
.badge--perso     { background: rgba(26,18,8,1); color: #fff; }
.badge--both      { background: rgba(26,18,8,1); color: #fff; }
.badge--community { background: rgba(26,18,8,1); color: #fff; }

.module-name {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--ink);
}
.module-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.module-features li {
  font-size: 12px;
  font-weight: 300;
  color: var(--mist);
  padding-left: 12px;
  position: relative;
  line-height: 1.4;
}
.module-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tc);
  opacity: 0.5;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION PERSONNEL vs CERCLE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.concepts { background: var(--sand); }
.concepts-header { text-align: center; margin-bottom: 40px; }
.concepts-header .section-intro { margin-bottom: 0; }
.concepts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.concept-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
}
.concept-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.concept-icon svg { width: 24px; height: 24px; }
.concept-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.concept-desc {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.65;
  margin-bottom: 16px;
}
.concept-note {
  font-size: 12px;
  color: var(--mist-light);
  font-style: italic;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION CONFIDENTIALITÉ (DARK)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.privacy {
  background: var(--ink);
  color: var(--white);
}
.privacy-inner { text-align: center; }
.privacy .section-eyebrow { color: rgba(196,90,42,0.8); }
.privacy .section-title { color: var(--white); }
.privacy-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.75;
}
.privacy-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.privacy-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.privacy-pill svg { width: 14px; height: 14px; color: var(--tc); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION FORUM
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.forum-section { background: var(--white); }
.forum-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.forum-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(196,90,42,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.forum-icon-wrap svg { width: 36px; height: 36px; color: var(--tc); }
.forum-content .section-title { margin-bottom: 12px; font-size: 28px; }
.forum-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.7;
  max-width: 540px;
}
.forum-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--mist-light);
  background: var(--sand);
  border-radius: 20px;
  padding: 6px 14px;
}
.forum-note svg { width: 14px; height: 14px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TÉMOIGNAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonial { background: var(--sand); }
.testimonial-inner { text-align: center; }
.testimonial-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--line);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 24px;
  position: relative;
}
.testimonial-quote::before {
  content: '"';
  font-size: 80px;
  font-family: var(--font-display);
  color: var(--tc);
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: -8px;
  line-height: 1;
  pointer-events: none;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tc);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}
.testimonial-name {
  font-size: 13px;
  color: var(--mist);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA FINAL
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-final {
  background: var(--parch);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 8px;
}
.cta-final-sub {
  font-size: 13px;
  color: var(--mist-light);
  margin-top: 16px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer .logo-text { color: rgba(255,255,255,0.85); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: color 120ms;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}
.footer-lang a { color: rgba(255,255,255,0.45); padding: 4px 8px; border-radius: 6px; transition: all 120ms; }
.footer-lang a:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.06); }
.footer-lang a.active { color: rgba(255,255,255,0.85); font-weight: 500; }
.footer-lang .sep { color: rgba(255,255,255,0.2); }
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE — 768px
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 768px) {
  .section { padding: 96px 0; }

  /* Hero */
  .hero { padding: 80px 0 72px; }
  .hero-title { font-size: 58px; }

  /* Concepts */
  .concepts-grid { grid-template-columns: 1fr 1fr; }

  /* Forum */
  .forum-inner { flex-direction: row; }

  /* CTA */
  .cta-final-title { font-size: 52px; }

  /* Footer */
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (max-width: 767px) {
  /* Nav */
  .nav-login { display: none; }

  /* Hero : colonne unique */
  .hero-inner { flex-direction: column; align-items: flex-start; }
  .hero-title { font-size: 38px; }
  .hero-subtitle { font-size: 15px; }
  .hero-visual { width: 100%; margin-top: 16px; }
  .screenshot-placeholder { width: 100%; max-width: 280px; margin: 0 auto; }

  /* Forum */
  .forum-inner { flex-direction: column; gap: 24px; }
  .forum-icon-wrap { width: 64px; height: 64px; }
  .forum-icon-wrap svg { width: 28px; height: 28px; }

  /* Section titles */
  .section-title { font-size: 30px; }
  .cta-final-title { font-size: 32px; }
}
