/* ═══════════════════════════════════════════════════════
   Odeon AI — founder.css
   Dedicated stylesheet for /membres-fondateurs/
   ═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   HERO — Dark premium
   ═══════════════════════════════════════════ */
.fd-hero {
  position: relative;
  padding: 130px 24px 100px;
  background: linear-gradient(180deg, #07071A 0%, #1C1954 60%, #0D0B2E 100%);
  text-align: center;
  overflow: hidden;
}
.fd-hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: .35;
  pointer-events: none;
  animation: fd-orb-float 14s ease-in-out infinite;
}
.fd-orb-1 { width: 500px; height: 500px; top: -150px; right: -80px; background: radial-gradient(circle, var(--lav) 0%, transparent 70%); animation-delay: 0s; }
.fd-orb-2 { width: 400px; height: 400px; bottom: -120px; left: -80px; background: radial-gradient(circle, var(--coral) 0%, transparent 70%); animation-delay: -5s; }
.fd-orb-3 { width: 320px; height: 320px; top: 30%; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, #6366F1 0%, transparent 70%); opacity: .22; animation-delay: -9s; }

@keyframes fd-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -20px) scale(1.08); }
}

.fd-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.fd-hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }

.fd-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .72rem; font-weight: 800; letter-spacing: 1.4px;
  text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, var(--coral) 0%, #E86D4F 100%);
  padding: 7px 15px; border-radius: 100px;
  margin-bottom: 26px;
  box-shadow: 0 8px 22px rgba(244,126,96,.4);
}
.fd-badge i { width: 13px; height: 13px; }

.fd-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800; letter-spacing: -1.8px;
  color: #fff; line-height: 1.15; margin-bottom: 24px;
}
.fd-gradient {
  background: linear-gradient(135deg, var(--coral) 0%, var(--lav) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.fd-hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,.7);
  line-height: 1.75; max-width: 680px; margin: 0 auto 36px;
}
.fd-hero-sub strong { color: #fff; font-weight: 700; }

.fd-hero-actions {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
}
.fd-cta {
  padding: 15px 28px !important;
  font-size: .98rem !important;
}

/* Urgency chip */
.fd-urgency {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 18px; border-radius: 100px;
  background: rgba(244,126,96,.14);
  border: 1.5px solid rgba(244,126,96,.4);
  font-size: .88rem;
  color: rgba(255,255,255,.9);
  font-weight: 600; letter-spacing: -.1px;
}
.fd-urgency strong {
  color: var(--coral);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.3px;
}
.fd-urgency-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(244,126,96,.3), 0 0 12px rgba(244,126,96,.6);
  animation: fd-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes fd-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(244,126,96,.3), 0 0 12px rgba(244,126,96,.6); transform: scale(1); }
  50%      { box-shadow: 0 0 0 7px rgba(244,126,96,.06), 0 0 20px rgba(244,126,96,.4); transform: scale(1.1); }
}
.fd-urgency-big {
  padding: 12px 24px;
  font-size: 1rem;
}
.fd-urgency-big strong { font-size: 1.1rem; }


/* ═══════════════════════════════════════════
   Generic section
   ═══════════════════════════════════════════ */
.fd-section {
  padding: 84px 0;
  background: var(--bg);
  position: relative;
}
.fd-section-alt { background: var(--bg-alt); }

.fd-section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.fd-section-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  font-weight: 800; color: var(--indigo);
  letter-spacing: -1px; line-height: 1.2;
  margin: 14px 0 12px;
}
.fd-section-head p {
  font-size: 1rem; color: var(--text-sec); line-height: 1.7;
}


/* ═══════════════════════════════════════════
   Benefits — 4 cards
   ═══════════════════════════════════════════ */
.fd-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 640px) { .fd-benefits { grid-template-columns: 1fr; } }

.fd-benefit {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.fd-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: rgba(167,139,250,.35);
}
.fd-benefit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.fd-benefit-icon i { width: 24px; height: 24px; stroke-width: 2; }
.fd-benefit-icon-coral  { background: rgba(244,126,96,.13); color: var(--coral-h); }
.fd-benefit-icon-lav    { background: rgba(167,139,250,.15); color: #6D28D9; }
.fd-benefit-icon-green  { background: rgba(16,185,129,.12); color: #059669; }
.fd-benefit-icon-indigo { background: rgba(30,27,75,.08); color: var(--indigo); }

.fd-benefit h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: -.3px;
  margin-bottom: 8px;
  line-height: 1.3;
}
.fd-benefit p {
  font-size: .88rem;
  color: var(--text-sec);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════
   For who — checklist
   ═══════════════════════════════════════════ */
.fd-forwho {
  list-style: none;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}
.fd-forwho li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.5;
  transition: border-color .2s, transform .2s;
}
.fd-forwho li:hover {
  border-color: rgba(167,139,250,.35);
  transform: translateX(4px);
}
.fd-forwho li strong { color: var(--indigo); font-weight: 700; }
.fd-forwho-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(16,185,129,.14), rgba(167,139,250,.1));
  color: #059669;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(16,185,129,.2);
}
.fd-forwho-icon i { width: 16px; height: 16px; stroke-width: 2.5; }


/* ═══════════════════════════════════════════
   How it works — 4 steps
   ═══════════════════════════════════════════ */
.fd-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) { .fd-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .fd-steps { grid-template-columns: 1fr; } }

.fd-step {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 24px 22px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.fd-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: rgba(167,139,250,.3);
}
.fd-step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--indigo-mid), var(--lav));
  color: #fff;
  font-size: .9rem; font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 16px;
  box-shadow: 0 6px 18px rgba(167,139,250,.35);
}
.fd-step h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: -.3px;
  margin-bottom: 6px;
  line-height: 1.3;
}
.fd-step p {
  font-size: .84rem;
  color: var(--text-sec);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════
   Form
   ═══════════════════════════════════════════ */
.fd-form {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  padding: 40px;
  box-shadow: var(--sh-md);
}
@media (max-width: 640px) { .fd-form { padding: 28px 22px; } }

.fd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 640px) { .fd-form-row { grid-template-columns: 1fr; gap: 18px; } }

.ff-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.fd-form-row .ff-group { margin-bottom: 0; }

.ff-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: -.1px;
}
.ff-label span { color: var(--coral); margin-left: 2px; }
.ff-optional {
  font-size: .72rem !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
  margin-left: 4px !important;
}

.ff-input {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .92rem;
  color: var(--text);
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 12px 15px;
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
  width: 100%;
}
.ff-input:focus {
  border-color: var(--lav);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(167,139,250,.15);
}
.ff-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.ff-select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.ff-error {
  font-size: .78rem;
  color: #DC2626;
  margin-top: 4px;
}

.fd-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 22px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--coral) 0%, #E86D4F 100%);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(244,126,96,.4);
  transition: transform .15s, box-shadow .2s, background .2s;
}
.fd-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(244,126,96,.5);
}
.fd-submit i { width: 16px; height: 16px; }

.fd-submit-sub {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Success block */
.fd-thankyou {
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 44px 32px;
  background: linear-gradient(135deg, rgba(16,185,129,.06) 0%, rgba(167,139,250,.05) 100%);
  border: 1.5px solid rgba(16,185,129,.28);
  border-radius: 22px;
  text-align: center;
}
.fd-thankyou-icon {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(16,185,129,.35);
}
.fd-thankyou-icon i { width: 30px; height: 30px; stroke-width: 2.2; }
.fd-thankyou h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: -.5px;
  margin-bottom: 10px;
}
.fd-thankyou p {
  font-size: .95rem;
  color: var(--text-sec);
  line-height: 1.65;
}
.fd-thankyou p strong { color: var(--indigo); font-weight: 700; }

.fd-alert {
  display: flex; align-items: flex-start; gap: 10px;
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 500;
}
.fd-alert i { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
.fd-alert-error {
  background: rgba(239,68,68,.08);
  color: #991b1b;
  border: 1px solid rgba(239,68,68,.2);
}


/* ═══════════════════════════════════════════
   Mini-FAQ (reuses .faq-item styles)
   ═══════════════════════════════════════════ */
.fd-faq-list {
  max-width: 720px;
  margin: 0 auto;
}


/* ═══════════════════════════════════════════
   Final CTA
   ═══════════════════════════════════════════ */
.fd-final { padding: 96px 0; background: var(--bg); }
.fd-final-card {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 40px;
  background: linear-gradient(135deg, #07071A 0%, #1C1954 55%, #0D0B2E 100%);
  border: 1px solid rgba(167,139,250,.28);
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 32px 80px rgba(30,27,75,.35);
}
.fd-final-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .4; pointer-events: none;
}
.fd-final-orb-1 { width: 340px; height: 340px; top: -120px; right: -80px; background: var(--lav); }
.fd-final-orb-2 { width: 280px; height: 280px; bottom: -100px; left: -60px; background: var(--coral); }
.fd-final-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 20px;
}

.fd-final-title {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 4px 0 0;
  max-width: 640px;
}
.fd-final-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  max-width: 520px;
  margin: -6px 0 6px;
}


/* ═══════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════ */
@media (max-width: 640px) {
  .fd-hero { padding: 110px 20px 80px; }
  .fd-section { padding: 60px 0; }
  .fd-final-card { padding: 44px 24px; }
}
