/* Sondages NL : habillage commun des pages, puis un bloc par thème client.
   Le thème se pose en classe sur <body> : theme-libertywebi, theme-jca, theme-arena. */

/* ---------- Base (sans thème) ---------- */
:root { --c: #1f2937; }
* { box-sizing: border-box; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
       background: #f5f5f4; color: #1c1917; padding: 32px 16px; }
.carte { max-width: 560px; margin: 0 auto; background: #fff; border-radius: 14px;
         box-shadow: 0 1px 3px rgba(0,0,0,.08); padding: 28px 24px; border-top: 5px solid var(--c);
         opacity: 0; transition: opacity .25s ease; }
.pret .carte { opacity: 1; }
.logo { max-height: 40px; max-width: 180px; display: block; margin-bottom: 18px; }
.etat { font-size: 13px; font-weight: 600; color: var(--c); text-transform: uppercase; letter-spacing: .04em; margin: 0 0 6px; }
h1 { font-size: 22px; line-height: 1.3; margin: 0 0 22px; }
.rep { margin-bottom: 14px; }
.lib { display: flex; justify-content: space-between; gap: 12px; font-size: 15px; margin-bottom: 6px; }
.lib b { font-variant-numeric: tabular-nums; }
.barre { height: 12px; background: #e7e5e4; border-radius: 6px; overflow: hidden; }
.plein { height: 100%; width: 0; background: #a8a29e; border-radius: 6px; transition: width .6s ease; }
.choisi .plein { background: var(--c); }
.choisi .lib span::after { content: "  ✓"; color: var(--c); font-weight: 700; }
.total { font-size: 13px; color: #78716c; margin: 4px 0 0; }
.note { font-size: 14px; color: #78716c; margin: 18px 0 0; }
form { margin-top: 26px; border-top: 1px solid #e7e5e4; padding-top: 22px; }
label { display: block; font-weight: 600; font-size: 15px; margin-bottom: 10px; }
textarea { width: 100%; min-height: 110px; padding: 12px; font: inherit; font-size: 15px;
           border: 1px solid #d6d3d1; border-radius: 10px; resize: vertical; }
textarea:focus { outline: 2px solid var(--c); border-color: transparent; }
button, .lien { display: inline-block; margin-top: 12px; background: var(--c); color: #fff; border: 0; border-radius: 10px;
         padding: 12px 20px; font: inherit; font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none; }
button:disabled { opacity: .5; cursor: default; }
[hidden] { display: none !important; }

/* Page Merci : pile de liens façon linktree */
.intro { font-size: 16px; line-height: 1.5; margin: 0 0 24px; opacity: .8; text-align: center; }
.liens { display: flex; flex-direction: column; gap: 12px; }
.liens .lien { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 0; text-align: left; }
.liens .lien small { display: block; font-weight: 400; font-size: 13px; opacity: .75; margin-top: 2px; }
.liens .lien::after { content: "→"; font-weight: 700; }
.liens .lien { transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.liens .lien.actif { transform: translateX(4px); }
.reseaux { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.reseaux a { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px; background: rgba(0,0,0,.06);
  color: inherit; text-decoration: none; font-weight: 600; font-size: 14px; transition: transform .2s ease, background-color .2s ease, color .2s ease; }
.reseaux a:hover { transform: translateY(-2px); }
.reseaux img { width: 18px; height: 18px; }
.exemple { font-size: 12px; opacity: .5; margin: 18px 0 0; }

/* ---------- Liberty Webi (libertywebi.fr) ---------- */
body.theme-libertywebi { font-family: Manrope, system-ui, -apple-system, sans-serif; color: #fff; padding: 0 16px 48px;
  background: radial-gradient(120% 60% at 50% 0%, rgba(227,30,36,.18), transparent 60%), #14161C; min-height: 100vh; }
body.theme-libertywebi::before { content: ""; display: block; height: 6px; margin: 0 -16px 40px; background: #E31E24; }
.theme-libertywebi .carte { background: transparent; box-shadow: none; border-top: 0; border-radius: 0; padding: 0; max-width: 600px; }
.theme-libertywebi .logo { max-height: 46px; max-width: 150px; margin-bottom: 36px; }
.theme-libertywebi .etat { display: inline-block; background: #fff; color: #E31E24; font-size: 12px; font-weight: 800;
  letter-spacing: .08em; padding: 5px 12px; transform: skewX(-11deg); margin-bottom: 18px; }
.theme-libertywebi h1 { font-size: clamp(26px, 6vw, 36px); font-weight: 800; line-height: 1.15; letter-spacing: -.01em; margin-bottom: 30px; }
.theme-libertywebi .rep { margin-bottom: 20px; }
.theme-libertywebi .lib { font-size: 16px; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 8px; }
.theme-libertywebi .lib b { color: #fff; font-weight: 800; font-size: 18px; }
.theme-libertywebi .barre { height: 14px; background: rgba(255,255,255,.08); border-radius: 0; }
.theme-libertywebi .plein { background: rgba(255,255,255,.3); border-radius: 0; }
.theme-libertywebi .choisi .plein { background: #E31E24; box-shadow: 0 0 18px rgba(227,30,36,.45); }
.theme-libertywebi .choisi .lib span { color: #fff; }
.theme-libertywebi .choisi .lib span::after { color: #FF2A32; }
.theme-libertywebi .total, .theme-libertywebi .note { color: rgba(255,255,255,.55); }
.theme-libertywebi form { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 30px; }
.theme-libertywebi label { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.theme-libertywebi textarea { background: rgba(255,255,255,.04); color: #fff; border: 1px solid rgba(255,255,255,.15); border-radius: 0; font-size: 16px; }
.theme-libertywebi textarea::placeholder { color: rgba(255,255,255,.4); }
.theme-libertywebi textarea:focus { outline: 2px solid #E31E24; border-color: transparent; }
.theme-libertywebi button { background: #E31E24; border-radius: 0; margin-top: 20px; margin-left: 6px; padding: 16px 28px;
  font-weight: 800; font-size: 15px; letter-spacing: .8px; text-transform: uppercase; transform: skewX(-11deg);
  box-shadow: rgb(196,16,24) -5px 6px 0 0, rgba(0,0,0,.5) -4px 14px 24px -6px; }
.theme-libertywebi button span { display: inline-block; transform: skewX(11deg); }
.theme-libertywebi button span::after { content: "  \2192"; }
.theme-libertywebi .liens .lien { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 0;
  padding: 18px 20px; font-weight: 800; }
.theme-libertywebi .liens .lien.actif { background: #E31E24; border-color: #E31E24; box-shadow: rgb(196,16,24) -5px 6px 0 0; }
.theme-libertywebi .etat { display: table; margin-left: auto; margin-right: auto; }
.theme-libertywebi h1 { text-align: center; }
.theme-libertywebi .logo { margin-left: auto; margin-right: auto; }
.theme-libertywebi .intro { text-align: center; }

/* ---------- Jody Cavalié Academy (academy.jodycavalie.com) ----------
   Jokker, la police du site, est payante : Archivo est la plus proche en libre. */
body.theme-jca { background: #fff; color: #333; padding: 0 16px 48px; min-height: 100vh; }
body.theme-jca::before { content: ""; display: block; height: 4px; margin: 0 -16px 0; background: #A48C58; }
.theme-jca .carte { background: transparent; box-shadow: none; border-top: 0; border-radius: 0; padding: 28px 0 0; max-width: 600px; }
.theme-jca .logo { max-height: 26px; max-width: 200px; margin: 0 0 40px; }
.theme-jca .etat { font-family: Archivo, sans-serif; color: #A48C58; font-size: 13px; font-weight: 600; letter-spacing: .06em; margin-bottom: 12px; }
.theme-jca h1 { font-family: Archivo, sans-serif; font-weight: 800; color: #000; font-size: clamp(28px, 6.5vw, 42px); line-height: 1.08; letter-spacing: -.01em; margin-bottom: 32px; }
.theme-jca .rep { margin-bottom: 20px; }
.theme-jca .lib { font-size: 16px; color: #333; }
.theme-jca .lib b { font-family: Archivo, sans-serif; font-weight: 800; color: #000; font-size: 18px; }
.theme-jca .barre { height: 12px; background: #F0EEE9; border-radius: 50px; }
.theme-jca .plein { background: #CFCAC0; border-radius: 50px; }
.theme-jca .choisi .plein { background: #A48C58; }
.theme-jca .choisi .lib span { color: #000; font-weight: 600; }
.theme-jca .choisi .lib span::after { color: #A48C58; }
.theme-jca .note { color: #777; }
.theme-jca form { border-top: 1px solid #EEE; margin-top: 34px; padding-top: 30px; }
.theme-jca label { font-family: Archivo, sans-serif; font-weight: 800; color: #000; font-size: 22px; }
.theme-jca textarea { border: 1px solid #DDD; border-radius: 5px; }
.theme-jca textarea:focus { outline: 2px solid #A48C58; border-color: transparent; }
.theme-jca button { font-family: Archivo, sans-serif; background: #A48C58; color: #fff; border-radius: 5px; padding: 15px 30px;
  font-size: 18px; font-weight: 600; margin-top: 18px; }
.theme-jca .intro { color: #777; }
.theme-jca .reseaux a { font-family: Archivo, sans-serif; background: #fff; color: #000; border: 1px solid #E6E1D7; border-radius: 5px; }
.theme-jca .reseaux a:hover { background: #A48C58; border-color: #A48C58; color: #fff; }
.theme-jca .reseaux a:hover img { filter: invert(1); }
.theme-jca .liens .lien { font-family: Archivo, sans-serif; background: #fff; color: #000; border: 1px solid #E6E1D7; border-radius: 5px;
  padding: 18px 20px; font-weight: 600; }
.theme-jca .liens .lien.actif { background: #A48C58; color: #fff; border-color: #A48C58; }
.theme-jca .logo { margin-left: auto; margin-right: auto; }
.theme-jca .etat, .theme-jca h1 { text-align: center; }
.theme-jca .etat { display: table; margin: 0 auto 20px; background: #A48C58; color: #fff; font-size: 16px; font-weight: 700;
  letter-spacing: .01em; padding: 10px 20px 10px 16px; border-radius: 50px; box-shadow: 0 6px 18px rgba(164,140,88,.35); }
.theme-jca .etat::before { content: "✓"; display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 8px;
  border-radius: 50%; background: #fff; color: #A48C58; font-size: 13px; font-weight: 800; vertical-align: -1px; }

/* ---------- Arena, séminaire Finances & Liberté (fl-the-experience.com) ---------- */
body.theme-arena { font-family: Roboto, Helvetica, Arial, sans-serif; color: #6B6B6B; background: #F4F5F7; padding: 0 16px 48px; min-height: 100vh; }
body.theme-arena::before { content: "ARENA GENÈVE · FINANCES & LIBERTÉ"; display: block; margin: 0 -16px 0; padding: 28px 16px 90px;
  background: linear-gradient(180deg, #041426, #0B2744); color: #DAB971; text-align: center;
  font-size: 12px; font-weight: 700; letter-spacing: .35em; }
.theme-arena .carte { margin-top: -62px; border-top: 0; border-radius: 16px; box-shadow: 0 18px 40px rgba(4,20,38,.12); padding: 32px 26px; }
.theme-arena .etat { color: #A48C58; font-size: 12px; font-weight: 700; letter-spacing: .3em; text-align: center; margin-bottom: 10px; }
.theme-arena h1 { color: #041426; font-weight: 900; text-transform: uppercase; font-size: clamp(22px, 5vw, 30px); line-height: 1.15; text-align: center; margin-bottom: 28px; }
.theme-arena .lib { color: #041426; font-weight: 500; }
.theme-arena .lib b { font-weight: 900; }
.theme-arena .barre { background: #E9ECF1; height: 12px; }
.theme-arena .plein { background: #B9C1CC; }
.theme-arena .choisi .plein { background: linear-gradient(90deg, #A48C58, #DAB971); }
.theme-arena .choisi .lib span::after { color: #A48C58; }
.theme-arena form { border-top-color: #E9ECF1; }
.theme-arena label { color: #041426; font-weight: 700; font-size: 17px; }
.theme-arena textarea { border-color: #D9DEE5; border-radius: 12px; }
.theme-arena textarea:focus { outline: 2px solid #A48C58; }
.theme-arena button { font-family: Montserrat, Roboto, sans-serif; background: linear-gradient(180deg, #A48C58, #DAB971); color: #041426;
  border-radius: 999px; padding: 14px 30px; font-size: 16px; font-weight: 700; text-transform: uppercase; margin-top: 18px; }
.theme-arena .intro { color: #6B6B6B; text-align: center; }
.theme-arena .liens .lien { background: #fff; color: #041426; border: 1px solid #E1E5EB; border-radius: 999px; padding: 16px 24px;
  font-family: Montserrat, Roboto, sans-serif; font-weight: 700; }
.theme-arena .liens .lien.actif { background: linear-gradient(180deg, #A48C58, #DAB971); border: 0; }

/* ---------- Ton Golf Authentique (tongolfauthentique.com, page d'accueil) ---------- */
body.theme-tga { font-family: Montserrat, system-ui, sans-serif; color: #444; background: #F6EFE2; padding: 0 16px 48px; min-height: 100vh; }
body.theme-tga::before { content: ""; display: block; height: 64px; margin: 0 -16px; background: #025B50; }
.theme-tga .carte { background: transparent; box-shadow: none; border-top: 0; border-radius: 0; padding: 0; max-width: 600px; margin-top: -47px; }
.theme-tga .logo { max-height: 30px; max-width: 120px; margin: 0 auto 56px; }
.theme-tga .etat { display: table; margin: 0 auto 18px; background: #025B50; color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: .12em; padding: 6px 12px; border-radius: 2px; }
.theme-tga h1 { text-align: center; color: #1B1B1B; font-weight: 800; font-size: clamp(26px, 6vw, 38px); line-height: 1.15; margin-bottom: 30px; }
.theme-tga #resultats { background: #fff; border-top: 4px solid #025B50; border-radius: 3px; padding: 24px 22px 8px; box-shadow: 0 8px 24px rgba(27,27,27,.06); }
.theme-tga .rep { margin-bottom: 18px; }
.theme-tga .lib { font-weight: 600; color: #1B1B1B; }
.theme-tga .lib b { color: #025B50; font-weight: 800; font-size: 17px; }
.theme-tga .barre { height: 10px; background: #EEE8DC; border-radius: 2px; }
.theme-tga .plein { background: #BFC9C4; border-radius: 2px; }
.theme-tga .choisi .plein { background: #025B50; }
.theme-tga .choisi .lib span::after { color: #C9A227; }
.theme-tga .note { color: #666; text-align: center; }
.theme-tga form { border-top: 0; margin-top: 32px; padding-top: 0; }
.theme-tga label { color: #1B1B1B; font-weight: 800; font-size: 22px; text-align: center; }
.theme-tga textarea { border: 1px solid #DDD3BF; border-radius: 3px; background: #fff; }
.theme-tga textarea:focus { outline: 2px solid #025B50; border-color: transparent; }
.theme-tga form button { display: block; margin: 18px auto 0; }
.theme-tga button { background: #C9A227; color: #1B1B1B; border-radius: 3px; padding: 17px 32px; font-size: 14px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.theme-tga button span::after { content: "  \2192"; }
.theme-tga .intro { text-align: center; color: #555; }
.theme-tga .liens .lien { background: #fff; color: #1B1B1B; border-top: 3px solid #025B50; border-radius: 3px; padding: 18px 22px; font-weight: 800;
  box-shadow: 0 6px 18px rgba(27,27,27,.05); }
.theme-tga .liens .lien.actif { background: #C9A227; border-top-color: #C9A227; }

.theme-arena .reseaux a { font-family: Montserrat, Roboto, sans-serif; background: #fff; color: #041426; border: 1px solid #E1E5EB; }
.theme-arena .reseaux a:hover { background: linear-gradient(180deg, #A48C58, #DAB971); border-color: transparent; }
.theme-tga .reseaux a { background: #fff; color: #1B1B1B; border: 1px solid #DDD3BF; border-radius: 3px; font-weight: 700; }
.theme-tga .reseaux a:hover { background: #025B50; border-color: #025B50; color: #fff; }
.theme-tga .reseaux a:hover img { filter: invert(1); }
