/* ============================================================
   LEOPAR — style.css
   Dark theme · From scratch · Production ready
   ============================================================ */

/* TOKENS */
:root {
  --bg:          #080808;
  --bg-1:        #0f0f0f;
  --bg-2:        #161616;
  --bg-3:        #1e1e1e;
  --border:      rgba(255,255,255,0.08);
  --border-md:   rgba(255,255,255,0.14);
  --text:        #f0f0f0;
  --text-2:      rgba(255,255,255,0.55);
  --text-3:      rgba(255,255,255,0.3);
  --accent:      #fdb60f;
  --accent-dim:  rgba(253,182,15,0.15);
  --green:       #4ade80;
  --green-dim:   rgba(74,222,128,0.12);
  --red:         #f87171;
  --red-dim:     rgba(248,113,113,0.12);
  --radius-sm:   10px;
  --radius:      16px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --font:        'Arial', sans-serif;
  --easing:      cubic-bezier(0.4, 0, 0.2, 1);
}

/* LIGHT THEME */
html.light {
  --bg:        #ffffff;
  --bg-1:      #f5f5f5;
  --bg-2:      #efefef;
  --bg-3:      #e5e5e5;
  --border:    rgba(0,0,0,0.08);
  --border-md: rgba(0,0,0,0.15);
  --text:      #0a0a0a;
  --text-2:    rgba(0,0,0,0.55);
  --text-3:    rgba(0,0,0,0.32);
}
html.light .navbar                          { background: rgba(255,255,255,0.92); border-bottom-color: rgba(0,0,0,0.08); }
html.light .lp-sec--dark                   { background: #f0f0f0; }
html.light .lp-sec--timer                  { border-color: rgba(0,0,0,0.08); }
html.light .faq_item                        { background: #f8f8f8; }
html.light .cta-box                         { background: #f5f5f5; }
html.light .ia-chat                         { background: #f8f8f8; }
html.light .ia-msg__bubble                  { color: #111; }
html.light .ia-msg--bot .ia-msg__bubble     { color: #555; }
html.light .fixed-bar__inner               { background: rgba(255,255,255,0.95); border-color: rgba(0,0,0,0.12); }
html.light .loader                          { border-color: rgba(0,0,0,0.1); border-top-color: var(--accent); }
html.light .step-card, html.light .feat-card { background: #fff; border-color: rgba(0,0,0,0.1); }
html.light .step-card:hover, html.light .feat-card:hover { background: #f5f5f5; }
html.light .ba-card--before                 { background: #f0f0f0; }
html.light .ba-card--after                  { background: rgba(167,139,250,0.05); }
html.light .ia-chat__bar                    { border-bottom-color: rgba(0,0,0,0.08); }
html.light footer                           { border-top-color: rgba(0,0,0,0.08); }
html.light .seo_hero, html.light .seo_section, html.light .seo_box { background: #fff; border-color: rgba(0,0,0,0.1); }
html.light .step#ui_step_3, html.light .step#ui_step_4 { background: #f8f8f8; border-color: rgba(0,0,0,0.1); }
html.light .recap                           { background: #efefef; border-color: rgba(0,0,0,0.1); }
html.light .step4_form input, html.light .step4_form select { background: #fff; border-color: rgba(0,0,0,0.15); color: #0a0a0a; }
html.light .step4_form input::placeholder   { color: rgba(0,0,0,0.3); }
html.light .step1_input_wrap                { background: #fff; border-color: rgba(0,0,0,0.15); }
html.light #domain                          { color: #0a0a0a; }
html.light #domain::placeholder             { color: rgba(0,0,0,0.3); }
html.light #menu                            { background: #fff; border-color: rgba(0,0,0,0.12); }
html.light #menu a                          { color: rgba(0,0,0,0.65); }
html.light #menu a:hover                    { background: rgba(0,0,0,0.05); color: #0a0a0a; }
html.light .timer-colon                     { color: rgba(0,0,0,0.15); }
html.light #step1_submit_text.is-checking::after { border-color: rgba(0,0,0,0.2); border-top-color: #000; }

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { min-height: 100dvh; background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body { display: flex; flex-direction: column; padding-top: 76px; }
img { display: block; max-width: 100%; }
a   { color: inherit; }
button, input, select, textarea { font-family: inherit; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; z-index: 100;
  width: 100%; padding: 0 32px; height: 76px;
  display: flex; align-items: center;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.navbar_content { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1100px; margin: 0 auto; }
#logo a { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; color: var(--text); text-decoration: none; letter-spacing: -0.01em; }
#avatar { width: 48px; height: 48px; background: url('/assets/images/logo-02.svg') no-repeat center / cover; display: block; flex-shrink: 0; }
#menu ul { display: flex; align-items: center; gap: 6px; list-style: none; }
#menu a { display: block; padding: 7px 14px; font-size: 14px; font-weight: 500; color: var(--text-2); text-decoration: none; border-radius: 8px; transition: color 0.15s, background 0.15s; }
#menu a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; }

/* THEME TOGGLE */
.theme-toggle { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border-md); background: transparent; color: var(--text-2); cursor: pointer; transition: background 0.15s, color 0.15s; padding: 0; flex-shrink: 0; }
.theme-toggle:hover { background: rgba(255,255,255,0.08); color: var(--text); }
html.light .theme-toggle:hover { background: rgba(0,0,0,0.06); }
html.dark  .theme-toggle__sun  { display: none; }
html.dark  .theme-toggle__moon { display: block; }
html.light .theme-toggle__sun  { display: block; }
html.light .theme-toggle__moon { display: none; }
.theme-toggle__sun  { display: none; }
.theme-toggle__moon { display: block; }

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .burger { display: flex; }
  #menu { display: none; position: absolute; top: 76px; right: 16px; background: var(--bg-2); border: 1px solid var(--border-md); border-radius: var(--radius); padding: 8px; min-width: 180px; z-index: 200; }
  #menu.active { display: block; }
  #menu ul { flex-direction: column; align-items: stretch; gap: 2px; }
  #menu a  { padding: 10px 14px; }
  .theme-toggle { margin: 4px 14px 8px; }
}

/* STEPS FORM */
#stepsForm { display: flex; flex-direction: column; align-items: center; width: 100%; padding: 80px 24px 40px; text-align: center; }
.step { display: none; flex-direction: column; align-items: center; width: 100%; max-width: 680px; }
.step.active { display: flex; }

/* HERO */
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(253,182,15,0.1); border: 1px solid rgba(253,182,15,0.25); border-radius: 999px; font-size: 13px; color: var(--accent); font-weight: 500; margin-bottom: 28px; }
.hero-badge__dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
#intro_h1 { font-size: clamp(38px, 7vw, 72px); font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; color: var(--text); margin-bottom: 18px; }
.hero-accent { background: linear-gradient(135deg, #fdb60f 0%, #f28207 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: clamp(16px, 2vw, 19px); color: var(--text-2); max-width: 500px; margin: 0 auto 36px; line-height: 1.6; }


/* DOMAIN INPUT */
.int { width: 100%; }
#step1Form { width: 100%; }
.step1_input_wrap {
  position: relative; display: flex; align-items: center;
  height:54px;
  max-width: 520px; margin: 0 auto;
  background: var(--bg-2); border: 1px solid var(--border-md);
  border-radius: 999px; padding: 5px 5px 5px 22px;
  transition: border-color 0.2s var(--easing), box-shadow 0.2s var(--easing);
}
.step1_input_wrap:focus-within { border-color: rgba(253,182,15,0.4); box-shadow: 0 0 0 3px rgba(253,182,15,0.08); }
#domain { flex: 1; background: transparent; border: none; outline: none; font-size: 16px; font-weight: 500; color: var(--text); caret-color: var(--accent); min-width: 0; }
#domain::placeholder { color: var(--text-3); font-weight: 400; }

/* Icone SVG supprimee - zero image */
#step1_submit_icon { display: none !important; }

/* Bouton Verifier - jaune par defaut */
#step1_submit_text {
  display: block; flex-shrink: 0;
  height: 42px; padding: 0 22px;
  background: linear-gradient(135deg, #fdb60f 0%, #f28207 100%);
  color: #000; border: none; border-radius: 999px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  white-space: nowrap; position: relative;
  transition: opacity 0.15s, transform 0.1s;
  box-shadow: 0 2px 14px rgba(253,182,15,0.35);
}
#step1_submit_text:hover  { opacity: 0.88; }
#step1_submit_text:active { transform: scale(0.97); }

/* Etat : verification en cours - spinner CSS pur, zero image */
#step1_submit_text.is-checking { color: transparent; pointer-events: none; cursor: default; }
#step1_submit_text.is-checking::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  border: 2px solid rgba(0,0,0,0.25); border-top-color: #000;
  border-radius: 50%; animation: spin 0.7s linear infinite;
}

/* Etat : disponible - vert */
#step1_submit_text.is-available {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff; box-shadow: 0 2px 14px rgba(34,197,94,0.3);
  pointer-events: none; cursor: default;
}

/* Etat : erreur - masque */
#step1_submit_text.is-hidden { display: none; }

/* Feedback success masque - le bouton vert suffit */
#feedback_step1.is-success { display: none; }

/* Bouton Continuer */
#step1_continue_btn {
  display: none; margin: 16px auto 0;
  height: 52px; padding: 0 40px;
  background: linear-gradient(135deg, #fdb60f 0%, #f28207 100%);
  color: #000; border: none; border-radius: 999px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 24px rgba(253,182,15,0.4);
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  letter-spacing: -0.01em;
}
#step1_continue_btn.visible { display: block; animation: pop_btn 0.28s var(--easing); }
#step1_continue_btn:hover   { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(253,182,15,0.5); }
#step1_continue_btn:active  { transform: scale(0.97); }

@keyframes pop_btn {
  0%   { transform: scale(0.82); opacity: 0; }
  65%  { transform: scale(1.04); }
  100% { transform: scale(1);    opacity: 1; }
}

#explain {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 4px;
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.5;
}

.explain-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.explain-item:first-child {
  gap: 0;
}

.explain-icon {
  font-size: 15px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  font-family: "Apple Color Emoji", "Segoe UI Emoji",
               "Noto Color Emoji", sans-serif;
  margin-left:6px;
}

/* Drapeau FR en CSS pur — fiable sur tous les OS */
.explain-icon--flag {
  display: inline-flex;
  align-items: center;
  width: 16px;
  height: 12px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(
    to right,
    #002395 0%, #002395 33.3%,
    #fff     33.3%, #fff     66.6%,
    #ed2939  66.6%, #ed2939  100%
  );
}

.explain-logo {
  display: inline-block;
  width: 16px;
  height: 16px;
  object-fit: contain;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

#feedback_step1 { display: none; margin: 14px auto 0; padding: 10px 18px; border-radius: 999px; font-size: 13px; font-weight: 500; max-width: 420px; }
#feedback_step1.is-visible { display: block; }
#feedback_step1.is-error   { background: var(--red-dim);    color: var(--red);    border: 1px solid rgba(248,113,113,0.2); }
#feedback_step1.is-info    { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(253,182,15,0.2); }

/* STEP 2 loader */
.loader_wrap { padding: 48px 24px; text-align: center; }
.loader { width: 36px; height: 36px; margin: 0 auto 20px; border: 2px solid rgba(255,255,255,0.1); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; }
.loader_wrap p { font-size: 14px; color: var(--text-2); }

/* STEP 3 & 4 */
.step#ui_step_3, .step#ui_step_4 { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px; gap: 16px; max-width: 520px; align-items: stretch; }
.step-title { font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; text-align: center; }
.promise    { font-size: 14px; color: var(--text-2); line-height: 1.65; text-align: center; }
.recap      { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 15px; color: var(--text); }
.recap strong { font-weight: 600; }

#feedback_step2, #feedback_step3, #feedback_step4 { display: none; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; }
#feedback_step2.is-visible, #feedback_step3.is-visible, #feedback_step4.is-visible { display: block; }
#feedback_step2.is-info,    #feedback_step3.is-info,    #feedback_step4.is-info    { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(253,182,15,0.2); }
#feedback_step2.is-success, #feedback_step3.is-success, #feedback_step4.is-success { background: var(--green-dim);  color: var(--green);  border: 1px solid rgba(74,222,128,0.2); }
#feedback_step2.is-error,   #feedback_step3.is-error,   #feedback_step4.is-error   { background: var(--red-dim);   color: var(--red);    border: 1px solid rgba(248,113,113,0.2); }

#stripe_payment { min-height: 120px; }

.cgv_check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; color: var(--text-2); line-height: 1.5; }
.cgv_check input { position: absolute; opacity: 0; pointer-events: none; }
.check_ui { flex-shrink: 0; width: 18px; height: 18px; border: 1px solid var(--border-md); border-radius: 5px; background: var(--bg-3); margin-top: 1px; position: relative; transition: all 0.15s; }
.cgv_check input:checked + .check_ui { background: var(--accent); border-color: var(--accent); }
.cgv_check input:checked + .check_ui::after { content: ""; position: absolute; left: 5px; top: 2px; width: 5px; height: 9px; border: 2px solid #000; border-top: none; border-left: none; transform: rotate(45deg); }
.check_label a { color: var(--accent); text-decoration: none; }
.check_label a:hover { text-decoration: underline; }

#btn_step3, #btn_step4 { width: 100%; height: 50px; background: linear-gradient(135deg, #fdb60f 0%, #f28207 100%); color: #000; border: none; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; cursor: pointer; box-shadow: 0 2px 14px rgba(253,182,15,0.3); transition: opacity 0.15s, transform 0.1s; }
#btn_step3:hover,    #btn_step4:hover    { opacity: 0.88; }
#btn_step3:active,   #btn_step4:active   { transform: scale(0.98); }
#btn_step3:disabled, #btn_step4:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.step4_form { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.step4_form input, .step4_form select { width: 100%; height: 44px; padding: 0 14px; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-size: 14px; outline: none; transition: border-color 0.15s, box-shadow 0.15s; -webkit-appearance: none; }
.step4_form input:focus, .step4_form select:focus { border-color: rgba(253,182,15,0.4); box-shadow: 0 0 0 3px rgba(253,182,15,0.08); }
.step4_form input::placeholder { color: var(--text-3); }
.step4_form select option       { background: var(--bg-2); color: var(--text); }
.step4_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* LP SECTIONS */
.lp-sec       { padding: 96px 0; }
.lp-sec--dark { background: var(--bg-1); }
.lp-ctr        { max-width: 960px; margin: 0 auto; padding: 0 32px; }
.lp-ctr--center { text-align: center; }
.lp-ctr--narrow { max-width: 720px; margin: 0 auto; padding: 0 32px; }
.lp-eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.lp-h2  { font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: var(--text); letter-spacing: -0.035em; line-height: 1.1; margin-bottom: 16px; }
.lp-lead { font-size: 17px; color: var(--text-2); line-height: 1.7; max-width: 560px; margin-bottom: 48px; }

/* BEFORE/AFTER */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ba-card { border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border); }
.ba-card--before { background: var(--bg-1); }
.ba-card--after  { background: rgba(253,182,15,0.04); border-color: rgba(253,182,15,0.2); }
.ba-head { margin-bottom: 22px; }
.ba-pill { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.ba-pill--no  { background: var(--red-dim);  color: var(--red);   border: 1px solid rgba(248,113,113,0.2); }
.ba-pill--yes { background: var(--green-dim); color: var(--green); border: 1px solid rgba(74,222,128,0.2); }
.ba-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ba-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-2); line-height: 1.5; }
.ba-icon { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; font-size: 9px; font-weight: 900; margin-top: 1px; }
.ba-icon--no  { background: var(--red-dim);  color: var(--red); }
.ba-icon--yes { background: var(--green-dim); color: var(--green); }

/* STEPS GRID */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: border-color 0.2s, background 0.2s; }
.step-card:hover { background: var(--bg-3); border-color: var(--border-md); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--accent-dim); color: var(--accent); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
.step-card p  { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* FEATURES */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feat-card { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; transition: border-color 0.2s, background 0.2s; }
.feat-card:hover { border-color: var(--border-md); background: var(--bg-2); }
.feat-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 14px; }
.feat-icon--purple { background: rgba(167,139,250,0.15); }
.feat-icon--green  { background: rgba(74,222,128,0.12); }
.feat-icon--blue   { background: rgba(96,165,250,0.12); }
.feat-icon--red    { background: rgba(248,113,113,0.12); }
.feat-icon--orange { background: rgba(253,182,15,0.15); }
.feat-icon--teal   { background: rgba(45,212,191,0.12); }
.feat-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; letter-spacing: -0.01em; }
.feat-card p  { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* IA BLOCK */
.ia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.ia-content .lp-lead { margin-bottom: 28px; }
.ia-checks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ia-checks li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-2); }
.ia-check { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: var(--green-dim); color: var(--green); font-size: 10px; font-weight: 900; flex-shrink: 0; }
.ia-chat { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.ia-chat__bar { display: flex; align-items: center; gap: 8px; padding: 12px 18px; border-bottom: 1px solid var(--border); }
.ia-chat__dot   { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.ia-chat__label { font-size: 12px; color: var(--text-3); font-weight: 500; }
.ia-chat__body  { padding: 6px 0; }
.ia-msg { padding: 12px 18px; }
.ia-msg__name { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.ia-msg--user .ia-msg__name { color: var(--accent); }
.ia-msg--bot  .ia-msg__name { color: var(--text-3); }
.ia-msg__bubble { font-size: 14px; color: var(--text); line-height: 1.5; }
.ia-msg--bot .ia-msg__bubble { color: var(--text-2); }

/* TIMER */
.lp-sec--timer { padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.timer-display { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin: 16px 0 20px; }
.timer-num { font-size: clamp(64px, 12vw, 110px); font-weight: 800; color: var(--text); letter-spacing: -0.05em; line-height: 1; }
.timer-num em { font-style: normal; font-size: 0.36em; font-weight: 400; color: var(--text-3); margin-left: 2px; }
.timer-colon { font-size: clamp(40px, 8vw, 72px); font-weight: 300; color: rgba(255,255,255,0.15); line-height: 1; padding: 0 4px; }
.timer-caption { font-size: 15px; color: var(--text-2); max-width: 460px; margin: 0 auto; line-height: 1.6; }

/* FAQ */
#faqs { display: flex; flex-direction: column; gap: 8px; }
.faq_item { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s; }
.faq_item:hover, .faq_item.active { border-color: var(--border-md); }
.faq_question { position: relative; padding: 20px 60px 20px 22px; font-size: 16px; font-weight: 600; color: var(--text); cursor: pointer; line-height: 1.4; letter-spacing: -0.01em; }

/* Icone + / x en CSS pur - zero image */
.faq_question::after  { content: ""; position: absolute; top: 50%; right: 20px; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.06); transform: translateY(-50%); transition: background 0.15s; }
.faq_question::before { content: "+"; position: absolute; top: 50%; right: 20px; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 300; color: var(--text-3); transform: translateY(-50%) rotate(0deg); transition: transform 0.25s var(--easing), color 0.15s; line-height: 1; }
.faq_item.active .faq_question::after  { background: rgba(253,182,15,0.15); }
.faq_item.active .faq_question::before { transform: translateY(-50%) rotate(45deg); color: var(--accent); }

.faq_answer { max-height: 0; overflow: hidden; padding: 0 22px; font-size: 15px; line-height: 1.7; color: var(--text-2); transition: max-height 0.3s var(--easing), padding 0.3s var(--easing); }
.faq_item.active .faq_answer { max-height: 600px; padding: 0 22px 22px; }
.faq_answer a       { color: var(--accent); text-decoration: none; }
.faq_answer a:hover { text-decoration: underline; }

/* CTA FINAL */
.lp-sec--cta { padding: 60px 0 100px; }
.cta-box { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 56px 48px; text-align: center; max-width: 580px; margin: 0 auto; }
.cta-box__title    { font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: var(--text); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 14px; }
.cta-box__sub      { font-size: 16px; color: var(--text-2); line-height: 1.65; margin-bottom: 32px; }
.cta-box__period   { font-size: 18px; color: var(--text-3); }
.cta-box__included { font-size: 13px; color: var(--text-3); margin-bottom: 32px; }
.cta-box__micro    { font-size: 12px; color: var(--text-3); margin-top: 16px; line-height: 1.8; }
.cta-box__price    { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 8px; }
.cta-box__amount   { font-size: 56px; font-weight: 800; color: var(--text); letter-spacing: -0.04em; line-height: 1; }
.cta-btn { display: inline-flex; align-items: center; justify-content: center; height: 52px; padding: 0 32px; background: linear-gradient(135deg, #fdb60f 0%, #f28207 100%); color: #000; text-decoration: none; border-radius: 999px; font-size: 15px; font-weight: 700; box-shadow: 0 4px 20px rgba(253,182,15,0.35); transition: opacity 0.15s, transform 0.15s; }
.cta-btn:hover  { opacity: 0.88; transform: translateY(-1px); }
.cta-btn:active { transform: scale(0.98); }

/* FIXED BAR */
.fixed-bar { position: fixed; left: 0; bottom: 0; width: 100%; padding: 16px 24px; display: flex; justify-content: center; z-index: 50; transform: translateY(100%); opacity: 0; transition: transform 0.3s var(--easing), opacity 0.3s; pointer-events: none; cursor: pointer; }
.fixed-bar.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.fixed-bar__inner { display: flex; align-items: center; gap: 16px; justify-content: space-between; background: var(--bg-2); border: 1px solid var(--border-md); border-radius: 999px; padding: 14px 14px 14px 28px; max-width: 600px; width: 100%; backdrop-filter: blur(20px); }
.fixed-bar__text { font-size: 14px; font-weight: 600; color: var(--text); }

/* Fleche CSS pur - zero image */
.fixed-bar__arrow { width: 36px; height: 36px; flex-shrink: 0; background: linear-gradient(135deg, #fdb60f 0%, #f28207 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.fixed-bar__arrow::after { content: "\2192"; font-size: 16px; color: #000; font-weight: 700; line-height: 1; }

/* ASSISTANT */
#fs_assistant_btn { position: fixed; bottom: 90px; right: 24px; background: var(--bg-2); border: 1px solid var(--border-md); color: var(--text); padding: 12px 18px; border-radius: 999px; cursor: pointer; z-index: 60; font-size: 14px; font-weight: 600; opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity 0.25s, transform 0.25s; }
#fs_assistant_btn.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#fs_assistant_modal { position: fixed; inset: 0; background: rgba(0,0,0,0.7); display: none; align-items: center; justify-content: center; z-index: 200; }
#fs_assistant_box { background: var(--bg-2); border: 1px solid var(--border-md); width: 94%; max-width: 480px; border-radius: var(--radius-xl); padding: 24px; position: relative; }
#fs_assistant_close    { position: absolute; top: 14px; right: 18px; cursor: pointer; font-size: 18px; color: var(--text-2); }
#fs_assistant_messages { height: 280px; overflow-y: auto; padding: 8px 0; margin-bottom: 12px; }
.fs_msg_user { text-align: right; margin-bottom: 10px; }
.fs_msg_bot  { text-align: left;  margin-bottom: 10px; }
.fs_msg_user span, .fs_msg_bot span { display: inline-block; padding: 8px 14px; border-radius: 12px; font-size: 14px; line-height: 1.5; }
.fs_msg_user span { background: var(--accent-dim); color: var(--accent); }
.fs_msg_bot  span { background: var(--bg-3); color: var(--text-2); }
#fs_assistant_input { display: flex; gap: 8px; }
#fs_assistant_input input  { flex: 1; height: 42px; padding: 0 16px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 999px; color: var(--text); font-size: 14px; outline: none; }
#fs_assistant_input button { height: 42px; padding: 0 18px; background: linear-gradient(135deg, #fdb60f 0%, #f28207 100%); color: #000; border: none; border-radius: 999px; font-size: 14px; font-weight: 700; cursor: pointer; }

/* FOOTER */
footer { padding: 28px 32px; border-top: 1px solid var(--border); text-align: center; }
footer li { display: inline-block; margin: 0 6px; font-size: 12px; }
footer li a { color: var(--text-3); text-decoration: none; transition: color 0.15s; }
footer li a:hover { color: var(--text-2); }

/* PROGRESS / DONE */
.fs_progress_wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; min-height: calc(100vh - 200px); }
.fs_progress_line { width: min(400px, 80vw); height: 2px; border-radius: 999px; background: rgba(255,255,255,0.1); overflow: hidden; }
.fs_progress_bar  { width: 0%; height: 100%; background: var(--accent); border-radius: 999px; transition: width 380ms var(--easing); }
.fs_progress_text { font-size: 13px; color: var(--text-3); text-align: center; max-width: 400px; line-height: 1.5; }
.fs_done_wrap     { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 50vh; text-align: center; }
.fs_done_text     { font-size: 1.6em; color: var(--text); }
#fs_done_link     { color: var(--accent); }
#activation       { color: var(--text); }

/* SEO PAGES */
.seo_page   { padding: 48px 0 96px; }
.seo_wrap   { width: min(1100px, calc(100% - 48px)); margin: 0 auto; }
.seo_layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 40px; align-items: start; }
.seo_main   { min-width: 0; }
.seo_hero   { margin-bottom: 32px; padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-1); }
.seo_kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.seo_hero h1 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; color: var(--text); letter-spacing: -0.03em; line-height:1.3 }
.seo_intro   { margin-top: 14px; font-size: 16px; color: var(--text-2); line-height: 1.75; }
.seo_section { margin-bottom: 20px; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-1); scroll-margin-top: 100px; }
.seo_section h2 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 700; color: var(--text); letter-spacing: -0.02em; margin-bottom: 14px; }
.seo_section h3 { font-size: 18px; font-weight: 700; color: var(--text); margin: 20px 0 8px; }
.seo_section p  { font-size: 15px; color: var(--text-2); line-height: 1.8; margin-bottom: 14px; }
.seo_section p:last-child { margin-bottom: 0; }
.seo_section p a       { color: var(--accent); text-decoration: none; }
.seo_section p a:hover { text-decoration: underline; }
.seo_sidebar    { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.seo_box        { padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-1); }
.seo_box__title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.seo_menu       { display: flex; flex-direction: column; gap: 6px; }
.seo_menu a     { font-size: 14px; color: var(--text-2); text-decoration: none; padding: 5px 0; transition: color 0.15s; }
.seo_menu a:hover, .seo_menu a.active { color: var(--text); }
.seo_box--cta    { background: var(--bg-2); border-color: rgba(253,182,15,0.2); }
.seo_cta__kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(253,182,15,0.5); margin-bottom: 8px; }
.seo_box--cta h3 { font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; margin-bottom: 10px; }
.seo_box--cta p  { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-bottom: 16px; }
.seo_cta__micro  { font-size: 12px; color: var(--text-3) !important; margin-top: 10px !important; }
.seo_btn { display: inline-flex; align-items: center; justify-content: center; height: 46px; padding: 0 20px; border-radius: 999px; background: linear-gradient(135deg, #fdb60f 0%, #f28207 100%); color: #000; text-decoration: none; font-size: 14px; font-weight: 700; transition: opacity 0.15s; }
.seo_btn:hover { opacity: 0.88; }
@media (max-width: 860px) { .seo_layout { grid-template-columns: 1fr; } .seo_sidebar { position: static; } }

/* FAQ STANDALONE */
#faqs_page     { width: min(860px, calc(100% - 48px)); margin: 0 auto 100px; padding: 48px 0 0; }
#faqs_page h2  { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--text); letter-spacing: -0.03em; margin-bottom: 28px; padding: 0 4px; }
#faqs_page #faqs { gap: 10px; }
#faqs_page .faq_item { background: var(--bg-1); }
#faqs_page .faq_question { font-size: 16px; }
#faqs_page .faq_answer a { color: var(--accent); }
#faqs_page .faq_answer code { background: var(--bg-3); color: var(--text); padding: 2px 6px; border-radius: 5px; font-size: 0.9em; }

/* AFFILIATION */
#affiliation-program .hero-accent { background: linear-gradient(135deg, #fb923c 0%, #a78bfa 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* COOKIES */
#coookies { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 300; display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px; }
#coookies .coookies_content { background: var(--bg-2); border: 1px solid var(--border-md); border-radius: var(--radius-xl); padding: 36px; max-width: 500px; width: 100%; }
#coookies h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
#coookies p  { font-size: 13px; color: var(--text-2); line-height: 1.6; margin-bottom: 20px; }
#coookies a  { display: block; max-width: 260px; margin: 0 auto 10px; height: 46px; line-height: 46px; border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 700; }
#accept_cookie  { background: linear-gradient(135deg, #fdb60f 0%, #f28207 100%); color: #000; cursor: pointer; }
#decline_cookie { pointer-events: none; color: var(--text-3); font-size: 12px; }
@media (max-width: 480px) { #coookies .coookies_content { border-radius: var(--radius-lg) var(--radius-lg) 0 0; position: fixed; bottom: 0; left: 0; right: 0; border-bottom: none; } }

/* UTILITIES */
.align_center { text-align: center; }
.displaynone  { display: none !important; }
.h_auto       { min-height: 100vh !important; height: auto !important; }
.gradient_text { background: linear-gradient(135deg, #fdb60f 0%, #f28207 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ANIMATIONS */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pop_success { 0% { transform: scale(0.8); } 70% { transform: scale(1.1); } 100% { transform: scale(1); } }

/* MOBILE DOMAIN FOCUS */
body.domain-focus-mobile #contenu_home,
body.domain-focus-mobile nav,
body.domain-focus-mobile footer { display: none !important; }

/* RESPONSIVE */
@media (max-width: 860px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .ia-grid { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 640px) {
  #stepsForm { padding: 60px 20px 32px; }
  #intro_h1  { font-size: clamp(32px, 10vw, 52px); }
  .step1_input_wrap { max-width: 100%; padding: 5px 5px 5px 16px; }
  .step#ui_step_3, .step#ui_step_4 { padding: 24px 20px; border-radius: var(--radius-lg); }
  .step4_grid  { grid-template-columns: 1fr; }
  .lp-sec      { padding: 64px 0; }
  .lp-ctr, .lp-ctr--narrow { padding: 0 20px; }
  .ba-grid         { grid-template-columns: 1fr; }
  .ba-card--after  { order: -1; }
  .steps-grid { grid-template-columns: 1fr; }
  .timer-num  { font-size: clamp(52px, 14vw, 80px); }
  .lp-lead    { margin-bottom: 32px; }
  .cta-box    { padding: 36px 24px; border-radius: var(--radius-lg); }
}
@media (max-width: 480px) { .feat-grid { grid-template-columns: 1fr; } }


/* ============================================================
   HOME LANDING — Composants specifiques a home_landing.php
   ============================================================ */

/* HERO HOME LANDING */
.lp-sec--hero { padding: 80px 0 96px; }

.hl-hero {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 64px;
  align-items: center;
}

.hl-hero__h2 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 20px;
}

.hl-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hl-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  background: linear-gradient(135deg, #fdb60f 0%, #f28207 100%);
  color: #000;
  text-decoration: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(253,182,15,0.35);
  transition: opacity 0.15s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.hl-btn-primary:hover  { opacity: 0.88; transform: translateY(-1px); }
.hl-btn-primary:active { transform: scale(0.98); }

.hl-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 24px;
  background: transparent;
  color: var(--text-2);
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border-md);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.hl-btn-ghost:hover { color: var(--text); border-color: var(--border-md); background: rgba(255,255,255,0.05); }
html.light .hl-btn-ghost:hover { background: rgba(0,0,0,0.04); }

.hl-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-3);
}

.hl-micro {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 14px;
  line-height: 1.6;
}

.hl-card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s;
}

.hl-card-link:hover { opacity: 0.75; }

/* MOCKUP HERO */
.hl-hero__visual { display: flex; justify-content: center; align-items: center; position: relative; }

.hl-mockup {
  width: 100%;
  max-width: 360px;
  background: var(--bg-2);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.hl-mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}

.hl-mockup__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-md);
  flex-shrink: 0;
}

.hl-mockup__url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  background: var(--bg-2);
  border-radius: 6px;
  padding: 3px 10px;
  margin: 0 4px;
}

.hl-mockup__body {
  padding: 24px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hl-mockup__line {
  border-radius: 4px;
  background: var(--border);
}

.hl-mockup__line--title { height: 22px; width: 70%; }
.hl-mockup__line--text  { height: 10px; width: 100%; }
.hl-mockup__line--short { width: 60%; }
.hl-mockup__line--btn   { height: 32px; width: 40%; border-radius: 999px; background: rgba(253,182,15,0.3); margin-top: 8px; }

.hl-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hl-badge--online {
  background: var(--bg-1);
  border: 1px solid rgba(74,222,128,0.3);
  color: var(--green);
}

.hl-badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

/* PANELS OUI/NON */
.hl-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hl-panel {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
}

.hl-panel--yes {
  background: rgba(253,182,15,0.04);
  border-color: rgba(253,182,15,0.2);
}

.hl-panel--no { background: var(--bg-2); }

.hl-panel h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.hl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hl-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

/* BLOC PRIX */
.hl-price-block {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 400px);
  gap: 56px;
  align-items: center;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.hl-price-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--bg-3);
  color: var(--text-3);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hl-price-amount {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.hl-price-period {
  font-size: 0.4em;
  font-weight: 400;
  color: var(--text-3);
  vertical-align: middle;
}

.hl-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hl-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}

/* LIGHT MODE SPECIFIC */
html.light .hl-panel--no { background: #f8f8f8; }
html.light .hl-mockup    { background: #fff; border-color: rgba(0,0,0,0.12); }
html.light .hl-mockup__bar { background: #f0f0f0; border-bottom-color: rgba(0,0,0,0.08); }
html.light .hl-mockup__url { background: #fff; }
html.light .hl-mockup__line { background: rgba(0,0,0,0.08); }
html.light .hl-badge--online { background: #fff; }
html.light .hl-price-block { background: #f8f8f8; border-color: rgba(0,0,0,0.1); }
html.light .hl-price-tag { background: #e5e5e5; color: rgba(0,0,0,0.45); }

/* RESPONSIVE HOME LANDING */
@media (max-width: 1000px) {
  .hl-hero { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hl-actions { justify-content: center; }
  .hl-hero__visual { justify-content: center; }
  .hl-price-block { grid-template-columns: 1fr; gap: 36px; text-align: center; padding: 36px 28px; }
  .hl-checklist { align-items: center; }
}

@media (max-width: 640px) {
  .lp-sec--hero { padding: 48px 0 64px; }
  .hl-hero__h2  { font-size: clamp(28px, 9vw, 44px); }
  .hl-panels    { grid-template-columns: 1fr; }
  .hl-price-block { border-radius: var(--radius-lg); padding: 28px 20px; }
  .hl-price-amount { font-size: clamp(40px, 12vw, 56px); }
}

/* ——— HERO EARN CARD ——— */
.af-earn-card {
  width: 100%;
  max-width: 360px;
  background: var(--bg-2);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.af-earn-card__label {
  padding: 16px 20px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}
.af-earn-card__rows {
  padding: 8px 0;
}
.af-earn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.af-earn-row:last-child { border-bottom: none; }
.af-earn-row:hover { background: rgba(255,255,255,0.03); }
.af-earn-row__sales { font-size: 14px; color: var(--text-2); }
.af-earn-row__amount {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.af-earn-row__amount--accent {
  color: var(--accent);
}
.af-earn-card__footer {
  padding: 14px 20px;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
}
.af-earn-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
}

/* ——— BOUTONS AFFILIATION ——— */
.af-btn-primary {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 28px;
  background: linear-gradient(135deg, #fdb60f 0%, #f28207 100%);
  color: #000;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(253,182,15,0.35);
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.af-btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(253,182,15,0.45);
}
.af-btn-dark {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 28px;
  background: var(--bg-3);
  color: var(--text);
  border: 1px solid var(--border-md);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.af-btn-dark:hover {
  background: var(--bg-2);
  border-color: rgba(255,255,255,0.2);
}

/* ——— SPLIT GRID ——— */
.af-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* ——— SLIDER CARD ——— */
.af-slider-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.af-slider-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.af-slider-card__sub {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 28px;
}
.af-slider-wrap {
  margin-bottom: 28px;
}
.af-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--bg-3);
  outline: none;
  cursor: pointer;
}
.af-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fdb60f 0%, #f28207 100%);
  box-shadow: 0 2px 8px rgba(253,182,15,0.4);
  cursor: pointer;
  transition: transform 0.1s;
}
.af-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.af-slider-result {
  display: flex;
  align-items: center;
  gap: 12px;
}
.af-slider-result__box {
  flex: 1;
  text-align: center;
  padding: 16px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-2);
}
.af-slider-result__box--you  { border-color: rgba(253,182,15,0.3); background: rgba(253,182,15,0.05); }
.af-slider-result__box--them { border-color: var(--border); }
.af-slider-result__box--total { border-color: var(--border-md); }
.af-slider-result__label {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.af-slider-result__val {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.af-slider-result__box--you .af-slider-result__val { color: var(--accent); }
.af-slider-result__sep {
  font-size: 18px;
  color: var(--text-3);
  font-weight: 300;
  flex-shrink: 0;
}

/* ——— RULES CARD ——— */
.af-rules-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.af-rules-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

/* ——— DASHBOARD PREVIEW ——— */
.af-dashboard-preview {
  width: 100%;
  max-width: 360px;
  background: var(--bg-2);
  border: 1px solid var(--border-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.af-dashboard-preview__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.af-dashboard-preview__title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  background: var(--bg-2);
  border-radius: 6px;
  padding: 3px 10px;
  margin: 0 4px;
}
.af-dashboard-preview__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.af-dash-row {
  display: flex;
  gap: 12px;
}
.af-dash-stat {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  background: var(--bg-3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.af-dash-stat__val {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.af-dash-stat__val--accent { color: var(--accent); }
.af-dash-stat__label { font-size: 11px; color: var(--text-3); font-weight: 500; }
.af-dash-link-block {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.af-dash-link-label {
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 4px;
}
.af-dash-link-value {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  font-family: monospace;
}
.af-dash-transactions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.af-dash-tx {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
}
.af-dash-tx__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.af-dash-tx__dot--green  { background: var(--green); }
.af-dash-tx__dot--muted  { background: var(--text-3); }
.af-dash-tx__desc  { flex: 1; color: var(--text-2); }
.af-dash-tx__amount { font-weight: 700; color: var(--green); }
.af-dash-tx__amount--muted { color: var(--text-3); }

/* ——— FAQ AFFILIATION ——— */
.af-faq { display: flex; flex-direction: column; gap: 8px; }
.af-faq__item {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.af-faq__item.open { border-color: var(--border-md); }
.af-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s;
  letter-spacing: -0.01em;
}
.af-faq__q:hover { color: var(--accent); }
.af-faq__icon {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 300;
  color: var(--text-3);
  transition: transform 0.2s var(--easing), color 0.15s;
  line-height: 1;
}
.af-faq__item.open .af-faq__icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.af-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--easing), padding 0.2s;
}
.af-faq__item.open .af-faq__a {
  max-height: 200px;
}
.af-faq__a p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ——— LIGHT MODE ——— */
html.light .af-earn-card          { background: #fff; border-color: rgba(0,0,0,0.1); }
html.light .af-earn-card__footer  { background: #f5f5f5; }
html.light .af-earn-card__badge   { color: #16a34a; }
html.light .af-slider-card        { background: #f8f8f8; border-color: rgba(0,0,0,0.1); }
html.light .af-rules-card         { background: #f8f8f8; border-color: rgba(0,0,0,0.1); }
html.light .af-slider             { background: #e0e0e0; }
html.light .af-slider-result__box { background: #fff; border-color: rgba(0,0,0,0.1); }
html.light .af-slider-result__box--you { background: rgba(253,182,15,0.08); }
html.light .af-dashboard-preview  { background: #fff; border-color: rgba(0,0,0,0.12); }
html.light .af-dashboard-preview__bar { background: #f0f0f0; border-bottom-color: rgba(0,0,0,0.08); }
html.light .af-dash-stat          { background: #f5f5f5; border-color: rgba(0,0,0,0.08); }
html.light .af-dash-link-block    { background: #f5f5f5; border-color: rgba(0,0,0,0.08); }
html.light .af-dash-tx            { background: #f5f5f5; border-color: rgba(0,0,0,0.08); }
html.light .af-faq__item          { background: #fff; border-color: rgba(0,0,0,0.08); }
html.light .af-btn-dark           { background: #f0f0f0; border-color: rgba(0,0,0,0.15); }

/* ——— RESPONSIVE ——— */
@media (max-width: 900px) {
  .af-split-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .af-slider-result { flex-wrap: wrap; }
  .af-slider-result__sep { display: none; }
  .af-slider-result__box { min-width: calc(50% - 6px); }
  .af-earn-card, .af-dashboard-preview { max-width: 100%; }
}

/* Liste dans les pages seo_ */
.seo_section .seo_list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 12px 0 16px;
	padding: 0;
}
.seo_section .seo_list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	color: var(--text-2);
	line-height: 1.6;
}
.seo_section .seo_list li::before {
	content: "–";
	color: var(--accent);
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 1px;
}
.seo_section a {
	color: var(--accent);
	text-decoration: none;
}
.seo_section a:hover {
	text-decoration: underline;
}

#faqs_page .faq_item + .faq_item { margin-top: 8px; }
#faqs_page .faq_category_title   { font-size: clamp(18px, 2vw, 22px); font-weight: 700; color: var(--text); letter-spacing: -0.02em; margin-bottom: 16px; }