/* ==========================================================================
   Ti'Bazar — Landing (design system + sections)
   Chargé uniquement sur le template landing.php
   ========================================================================== */

:root{
  --tb-bg:        #F1F6FD;
  --tb-navy:      #151D53;
  --tb-navy-2:    #1E2766;
  --tb-yellow:    #FAC710;
  --tb-yellow-sf: #FDEEB7;
  --tb-blue:      #4353FF;
  --tb-muted:     #6B7391;
  --tb-muted-2:   #8B93AD;
  --tb-line:      rgba(21,29,83,.08);
  --tb-white:     #fff;
  --tb-ink-soft:  #B9C2E4;
  --tb-ink-soft2: #D8DEF4;
  --tb-r-sm: 14px;
  --tb-r-md: 20px;
  --tb-r-lg: 24px;
  --tb-r-xl: 32px;
  --tb-shadow:    0 10px 30px rgba(21,29,83,.07);
  --tb-shadow-lg: 0 24px 60px rgba(21,29,83,.12);
  --tb-font: 'Plus Jakarta Sans', 'Sora', system-ui, -apple-system, sans-serif;
  --tb-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ---------- Reset local ---------- */
body.tb-page{
  margin:0;
  background:var(--tb-bg) !important;
  color:var(--tb-navy) !important;
  font-family:var(--tb-font);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
body.tb-page a{ color:var(--tb-blue); text-decoration:none; transition:color .2s ease; }
body.tb-page a:hover{ color:var(--tb-navy); }
body.tb-page h1,body.tb-page h2,body.tb-page h3,body.tb-page h4,body.tb-page h5{
  font-family:var(--tb-font); letter-spacing:-.025em; margin:0;
}
body.tb-page p{ margin:0; }
body.tb-page img{ max-width:100%; height:auto; }
.tb-wrap{ max-width:1200px; margin:0 auto; padding:0 24px; }
.tb-main{ display:block; width:100%; }

/* ==========================================================================
   HEADER (override du header global sur cette page)
   ========================================================================== */
body.tb-page #site-header{
  position:sticky; top:0; z-index:60;
  max-width:none; width:100%; padding:0;
  background:rgba(241,246,253,.88);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--tb-line);
  transition:box-shadow .3s ease, background .3s ease;
}
body.tb-page #site-header.scrolled{
  background:rgba(241,246,253,.95);
  box-shadow:0 8px 30px rgba(21,29,83,.06);
}
body.tb-page #site-header .navbar{
  position:relative;
  max-width:1200px; margin:0 auto; padding:14px 24px;
  display:flex; align-items:center; gap:28px; flex-wrap:nowrap;
}
body.tb-page #site-header .logo a{
  display:block; width:156px; height:42px;
  background:url("images/logo-bleu.svg") no-repeat left center / contain;
}
body.tb-page #site-header .logo img{ opacity:0; height:42px; width:156px; display:block; }
body.tb-page #site-navigation{ margin-left:auto; }
body.tb-page #nav-links{
  list-style:none; display:flex; align-items:center; gap:22px; margin:0; padding:0;
}
body.tb-page #nav-links a{
  font-size:14.5px; font-weight:600; color:#3D466F; white-space:nowrap;
}
body.tb-page #nav-links a:hover{ color:var(--tb-navy); }
body.tb-page #site-header .downloadBtn .btn{
  height:46px; padding:0 22px; border-radius:var(--tb-r-sm);
  background:var(--tb-yellow); border:none; color:var(--tb-navy);
  font-size:14.5px; font-weight:700; text-transform:none;
  display:inline-flex; align-items:center; gap:8px;
  box-shadow:0 6px 18px rgba(250,199,16,.35);
  transition:transform .2s ease, box-shadow .2s ease;
}
body.tb-page #site-header .downloadBtn .btn:hover{
  transform:translateY(-2px); box-shadow:0 10px 26px rgba(250,199,16,.45); color:var(--tb-navy);
}
body.tb-page #site-header .downloadBtn .btn svg{ display:block; color:var(--tb-navy); }
/* burger */
body.tb-page .menu-toggle{
  display:none; flex-direction:column; gap:5px; cursor:pointer; margin-left:auto;
  background:none; border:0; padding:6px; -webkit-appearance:none; appearance:none;
}
body.tb-page .menu-toggle span{
  display:block; width:26px; height:2px; border-radius:2px; background:var(--tb-navy);
  transition:transform .3s ease, opacity .3s ease;
}
body.tb-page .menu-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
body.tb-page .menu-toggle.active span:nth-child(2){ opacity:0; }
body.tb-page .menu-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.tb-hero{
  position:relative; overflow:hidden;
  background:var(--tb-navy); color:#fff;
  padding:92px 0 130px;
}
.tb-hero::before,
.tb-hero::after{ content:""; position:absolute; border-radius:999px; pointer-events:none; }
.tb-hero::before{
  top:-160px; right:-120px; width:520px; height:520px;
  background:radial-gradient(circle at 30% 30%, rgba(250,199,16,.30), rgba(250,199,16,0) 70%);
}
.tb-hero::after{
  bottom:-220px; left:-140px; width:560px; height:560px;
  background:radial-gradient(circle at 60% 40%, rgba(67,83,255,.42), rgba(67,83,255,0) 70%);
}
.tb-hero__inner{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;
}
.tb-hero__col{ display:flex; flex-direction:column; gap:26px; }

.tb-badge{
  align-self:flex-start; display:inline-flex; align-items:center; gap:9px;
  padding:9px 16px; border-radius:999px;
  background:rgba(250,199,16,.14); border:1px solid rgba(250,199,16,.35);
  color:var(--tb-yellow); font-size:13px; font-weight:700; letter-spacing:.04em;
}
.tb-badge__dot{
  width:7px; height:7px; border-radius:999px; background:var(--tb-yellow);
  box-shadow:0 0 12px var(--tb-yellow); animation:tb-pulse 2s ease-in-out infinite;
}
@keyframes tb-pulse{ 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.45;transform:scale(.75)} }

.tb-hero h1{
  font-size:clamp(2.4rem,5.2vw,4rem); line-height:1.02; font-weight:800;
  letter-spacing:-.03em; text-wrap:pretty; color:#fff;
}
.tb-hero h1 em{ font-style:normal; color:var(--tb-yellow); }
.tb-hero__lead{
  font-size:19px; line-height:1.6; color:var(--tb-ink-soft); max-width:530px; text-wrap:pretty;
}

.tb-actions{ display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.tb-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  height:56px; padding:0 26px; border-radius:16px;
  font-size:16px; font-weight:700; border:1px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.tb-btn:hover{ transform:translateY(-2px); }
.tb-btn--primary{
  background:var(--tb-yellow); color:var(--tb-navy);
  box-shadow:0 12px 30px rgba(0,0,0,.18);
}
.tb-btn--primary:hover{ color:var(--tb-navy); box-shadow:0 16px 38px rgba(250,199,16,.35); }
.tb-btn--ghost{
  background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.18); color:#fff;
}
.tb-btn--ghost:hover{ background:rgba(255,255,255,.14); color:#fff; }
.tb-btn--dark{ background:var(--tb-navy); color:#fff; }
.tb-btn--dark:hover{ color:#fff; box-shadow:0 14px 32px rgba(21,29,83,.28); }
.tb-btn__ico{ display:inline-flex; line-height:1; }

.tb-proof{ display:flex; gap:26px; flex-wrap:wrap; padding-top:4px; }
.tb-proof__item{ display:flex; align-items:center; gap:10px; font-size:14px; font-weight:600; color:var(--tb-ink-soft2); }
.tb-proof__ico{ display:inline-flex; color:var(--tb-yellow); line-height:1; }
.tb-proof__ico svg,.tb-island__ico svg,.tb-road__ico svg,
.tb-check__ico svg,.tb-ship__ico svg,.tb-btn__ico svg,
.tb-track__bul svg,.tb-secure svg,.tb-ship__head svg{ display:block; }

/* Visuel du hero */
.tb-hero__media{ display:flex; justify-content:center; }

/* Mockup téléphone */
.tb-phone{
  width:330px; max-width:100%; padding:14px; border-radius:38px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.16);
  box-shadow:0 34px 80px rgba(0,0,0,.34);
  animation:tb-float 7s ease-in-out infinite;
}
@keyframes tb-float{ 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.tb-phone__screen{
  border-radius:28px; overflow:hidden; background:var(--tb-bg);
  display:flex; flex-direction:column;
}

/* Mockup fil d'annonces (hero) */
.tb-appfeed{ padding:18px 18px 18px; display:flex; flex-direction:column; gap:12px; }
.tb-appfeed__search{
  height:42px; border-radius:14px; background:#fff; display:flex; align-items:center;
  gap:8px; padding:0 12px; color:var(--tb-muted-2); font-size:13px;
}
.tb-appfeed__search svg{ color:var(--tb-muted); flex-shrink:0; }
.tb-appfeed__pills{ display:flex; gap:6px; }
.tb-appfeed__pill{ padding:7px 11px; border-radius:999px; background:#fff; color:var(--tb-muted); font-size:11.5px; font-weight:600; }
.tb-appfeed__pill--on{ background:var(--tb-navy); color:#fff; font-weight:700; }
.tb-appfeed__grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.tb-appfeed__card{ background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 6px 16px rgba(21,29,83,.07); }
.tb-appfeed__thumb{
  height:104px; position:relative;
  background:repeating-linear-gradient(45deg,#E6EDF9 0 6px,#F4F8FD 6px 12px);
}
.tb-appfeed__loc{
  position:absolute; top:6px; left:6px; padding:4px 8px; border-radius:999px;
  background:rgba(255,255,255,.93); font-size:9.5px; font-weight:700; color:var(--tb-navy);
}
.tb-appfeed__price{ margin:8px 10px 0; font-size:13px; font-weight:800; color:var(--tb-navy); }
.tb-appfeed__label{ margin:0 10px 10px; font-size:10.5px; color:var(--tb-muted); }
.tb-appfeed__ship{
  background:var(--tb-navy); border-radius:16px; padding:12px; display:flex; align-items:center; gap:10px;
}
.tb-appfeed__ship svg{ color:var(--tb-yellow); flex-shrink:0; }
.tb-appfeed__shipt{ font-size:12px; font-weight:700; color:#fff; }
.tb-appfeed__shipd{ font-size:10.5px; color:var(--tb-ink-soft); }

/* ==========================================================================
   BANDEAU ÎLES (chevauche le hero)
   ========================================================================== */
.tb-islands{ position:relative; z-index:2; margin-top:-64px; }
.tb-islands__grid{
  background:#fff; border-radius:var(--tb-r-xl); padding:30px;
  box-shadow:var(--tb-shadow-lg);
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px;
}
.tb-island{
  border-radius:var(--tb-r-md); padding:20px; display:flex; flex-direction:column; gap:8px;
  background:var(--tb-bg); border:1px solid var(--tb-line);
  transition:transform .25s ease, box-shadow .25s ease;
}
.tb-island:hover{ transform:translateY(-4px); box-shadow:var(--tb-shadow); }
.tb-island__head{ display:flex; align-items:center; gap:8px; }
.tb-island__ico{ display:inline-flex; color:var(--tb-blue); line-height:1; }
.tb-island__name{ font-size:16.5px; font-weight:800; }
.tb-island__txt{ font-size:14.5px; line-height:1.5; color:var(--tb-muted); text-wrap:pretty; }
.tb-island--navy{ background:var(--tb-navy); border-color:var(--tb-navy); color:#fff; }
.tb-island--navy .tb-island__ico{ color:var(--tb-yellow); }
.tb-island--navy .tb-island__txt{ color:var(--tb-ink-soft); }
.tb-island--gold{ background:var(--tb-yellow-sf); border-color:var(--tb-yellow-sf); }
.tb-island--gold .tb-island__ico{ color:var(--tb-navy); }
.tb-island--gold .tb-island__txt{ color:#8A7A2E; }

/* ==========================================================================
   SECTIONS génériques
   ========================================================================== */
.tb-section{ padding:100px 0; }
.tb-section--light{ background:#fff; }
.tb-section--tight{ padding:80px 0; }

.tb-eyebrow{
  font-size:13px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--tb-blue);
}
.tb-h2{ font-size:clamp(2rem,3.4vw,2.75rem); line-height:1.08; font-weight:800; text-wrap:pretty; }
.tb-lead{ font-size:15.5px; line-height:1.6; color:var(--tb-muted); }
.tb-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:40px; flex-wrap:wrap; margin-bottom:48px; }
.tb-head__l{ max-width:660px; display:flex; flex-direction:column; gap:14px; }
.tb-head__r{ max-width:340px; }

/* ---------- Étapes (Comment ça marche) ---------- */
.tb-steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.tb-step{
  background:#fff; border-radius:var(--tb-r-lg); padding:30px;
  display:flex; flex-direction:column; gap:16px; box-shadow:var(--tb-shadow);
  transition:transform .25s ease, box-shadow .25s ease;
}
.tb-step:hover{ transform:translateY(-6px); box-shadow:var(--tb-shadow-lg); }
.tb-step__top{ display:flex; align-items:center; justify-content:space-between; }
.tb-step__ico{
  width:52px; height:52px; border-radius:16px; background:var(--tb-yellow-sf);
  display:flex; align-items:center; justify-content:center;
}
.tb-step__ico{ color:var(--tb-navy); }
.tb-step__ico svg{ display:block; }
.tb-step__num{ font-family:var(--tb-mono); font-size:14px; color:#A2AAC2; }
.tb-step__t{ font-size:21px; font-weight:800; }
.tb-step__d{ font-size:15px; line-height:1.6; color:var(--tb-muted); text-wrap:pretty; }

/* ---------- Livraison inter-îles ---------- */
.tb-split{ display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.tb-track{ display:flex; flex-direction:column; gap:14px; padding-top:6px; }
.tb-track__row{ display:flex; align-items:center; gap:14px; }
.tb-track__bul{
  width:34px; height:34px; border-radius:999px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:18px;
  background:var(--tb-navy); border:2px solid var(--tb-navy); color:var(--tb-yellow);
}
.tb-track__lab{ font-size:16px; font-weight:600; color:var(--tb-navy); }
.tb-track__line{ flex:1; height:1px; background:var(--tb-line); }
.tb-track__meta{ font-size:13px; color:var(--tb-muted-2); white-space:nowrap; }
.tb-track__row--active .tb-track__bul{ background:var(--tb-blue); border-color:#C3CBFF; color:#fff; }
.tb-track__row--active .tb-track__lab{ color:var(--tb-blue); font-weight:800; }
.tb-track__row--todo .tb-track__bul{ background:#fff; border-color:#D5DCEC; color:#A2AAC2; }
.tb-track__row--todo .tb-track__lab{ color:var(--tb-muted-2); }

.tb-phone--navy{ background:var(--tb-navy); border-color:var(--tb-navy); box-shadow:0 34px 80px rgba(21,29,83,.28); }
.tb-ship{ background:var(--tb-navy); padding:22px 20px; display:flex; flex-direction:column; gap:14px; }
.tb-ship__head{ display:flex; align-items:center; gap:10px; color:#fff; font-size:16px; font-weight:800; }
.tb-ship__card{ display:flex; align-items:center; gap:10px; background:var(--tb-navy-2); border-radius:var(--tb-r-sm); padding:12px; }
.tb-ship__ico{ display:inline-flex; color:var(--tb-yellow); line-height:1; }
.tb-ship__t{ font-size:13px; font-weight:700; color:#fff; }
.tb-ship__s{ font-size:11px; color:var(--tb-ink-soft); }
.tb-ship__eta{ font-size:11.5px; font-weight:700; color:var(--tb-yellow); }
.tb-ship__body{ padding:20px; display:flex; flex-direction:column; gap:14px; }
.tb-mini{ background:#fff; border-radius:16px; padding:14px; box-shadow:0 6px 18px rgba(21,29,83,.07); display:flex; flex-direction:column; gap:10px; }
.tb-mini__row{ display:flex; align-items:center; justify-content:space-between; }
.tb-mini__t{ font-size:12.5px; font-weight:700; }
.tb-pill{ padding:4px 9px; border-radius:999px; background:var(--tb-yellow-sf); font-size:10.5px; font-weight:700; color:var(--tb-navy); }
.tb-bar{ display:flex; align-items:center; gap:8px; }
.tb-bar__code{ font-size:11.5px; font-weight:700; color:var(--tb-navy); }
.tb-bar__track{ flex:1; height:4px; border-radius:999px; background:#E4EAF6; position:relative; overflow:hidden; }
.tb-bar__fill{ position:absolute; inset:0 auto 0 0; width:62%; border-radius:999px; background:var(--tb-blue); }
.tb-mini__s{ font-size:11.5px; color:var(--tb-muted); }
.tb-mini--row{ flex-direction:row; align-items:center; gap:12px; }
.tb-mini__thumb{ width:44px; height:44px; border-radius:12px; object-fit:cover; }
.tb-mini__ref{ font-family:var(--tb-mono); font-size:10.5px; color:var(--tb-muted-2); }
.tb-secure{ display:flex; align-items:center; gap:8px; justify-content:center; font-size:11.5px; font-weight:600; color:var(--tb-navy); }
.tb-secure svg{ color:var(--tb-blue); flex-shrink:0; }

/* ---------- Fonctionnalités ---------- */
.tb-feats{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.tb-feat{
  background:#fff; border:1px solid var(--tb-line); border-radius:22px; padding:26px;
  display:flex; flex-direction:column; gap:12px;
  transition:transform .25s ease, box-shadow .25s ease;
}
.tb-feat:hover{ transform:translateY(-5px); box-shadow:var(--tb-shadow); }
.tb-feat__ico{ display:inline-flex; width:30px; height:30px; align-items:center; color:var(--tb-blue); }
.tb-feat__ico--txt{ font-size:26px; line-height:1; color:var(--tb-blue); }
.tb-feat__ico svg{ display:block; }
.tb-feat__t{ font-size:18px; font-weight:800; }
.tb-feat__d{ font-size:14.5px; line-height:1.6; color:var(--tb-muted); text-wrap:pretty; }
.tb-feat--navy{ background:var(--tb-navy); border-color:var(--tb-navy); color:#fff; }
.tb-feat--navy .tb-feat__d{ color:var(--tb-ink-soft); }
.tb-feat--navy .tb-feat__ico--txt{ color:var(--tb-yellow); }
.tb-feat--gold{ background:var(--tb-yellow-sf); border-color:var(--tb-yellow-sf); }
.tb-feat--gold .tb-feat__d{ color:#8A7A2E; }
.tb-feat--gold .tb-feat__ico--txt{ color:var(--tb-navy); }

/* ---------- Roadmap ---------- */
.tb-road{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.tb-road__card{
  border-radius:22px; padding:24px; display:flex; flex-direction:column; gap:12px;
  background:#fff; border:1px solid var(--tb-line);
  transition:transform .25s ease, box-shadow .25s ease;
}
.tb-road__card:hover{ transform:translateY(-4px); box-shadow:var(--tb-shadow); }
.tb-road__top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.tb-road__state{
  padding:6px 12px; border-radius:999px; font-size:11px; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase; background:var(--tb-navy); color:#fff;
}
.tb-road__ico{ display:inline-flex; color:var(--tb-blue); line-height:1; }
.tb-road__t{ font-size:18px; font-weight:800; }
.tb-road__d{ font-size:14px; line-height:1.55; color:var(--tb-muted); text-wrap:pretty; }
.tb-road__card--now{ background:var(--tb-navy); border-color:var(--tb-navy); color:#fff; }
.tb-road__card--now .tb-road__state{ background:var(--tb-yellow); color:var(--tb-navy); }
.tb-road__card--now .tb-road__ico{ color:var(--tb-yellow); }
.tb-road__card--now .tb-road__d{ color:var(--tb-ink-soft); }
.tb-road__card--next{ background:var(--tb-yellow-sf); border-color:var(--tb-yellow-sf); }
.tb-road__card--next .tb-road__state{ background:rgba(21,29,83,.12); color:var(--tb-navy); }
.tb-road__card--next .tb-road__ico{ color:var(--tb-navy); }
.tb-road__card--next .tb-road__d{ color:#8A7A2E; }

/* ---------- CTA newsletter ---------- */
.tb-cta{
  position:relative; overflow:hidden;
  background:var(--tb-navy); border-radius:36px; padding:64px;
}
.tb-cta::before{
  content:""; position:absolute; top:-140px; right:-80px; width:420px; height:420px; border-radius:999px;
  background:radial-gradient(circle at 40% 40%, rgba(250,199,16,.28), rgba(250,199,16,0) 70%);
}
.tb-cta__inner{ position:relative; display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.tb-cta__l{ display:flex; flex-direction:column; gap:20px; }
.tb-cta .tb-eyebrow{ color:var(--tb-yellow); }
.tb-cta__h{ font-size:clamp(2rem,3.4vw,2.75rem); line-height:1.08; font-weight:800; color:#fff; text-wrap:pretty; }
.tb-cta__p{ font-size:16.5px; line-height:1.6; color:var(--tb-ink-soft); max-width:440px; text-wrap:pretty; }
.tb-checks{ display:flex; flex-direction:column; gap:12px; padding-top:8px; }
.tb-check{ display:flex; align-items:center; gap:12px; font-size:14.5px; color:var(--tb-ink-soft2); }
.tb-check__ico{ display:inline-flex; color:var(--tb-yellow); line-height:1; }
.tb-cta__box{
  background:#fff; border-radius:28px; padding:32px;
  display:flex; flex-direction:column; gap:16px; box-shadow:0 24px 60px rgba(0,0,0,.28);
}
.tb-cta__box-t{ font-size:21px; font-weight:800; }
.tb-cta__box-s{ font-size:14px; color:var(--tb-muted); margin-top:-8px; }
.tb-cta__note{ text-align:center; font-size:12.5px; color:var(--tb-muted-2); }

/* Fluent Form dans le bloc CTA */
.tb-cta__box .fluentform,
.tb-cta__box .frm-fluent-form{ margin:0; }
.tb-cta__box .ff-el-group{ margin-bottom:12px; }
.tb-cta__box .ff-el-input--label label{
  font-size:12.5px; font-weight:700; color:var(--tb-muted); margin-bottom:6px;
}
.tb-cta__box input[type="text"],
.tb-cta__box input[type="email"],
.tb-cta__box select,
.tb-cta__box textarea{
  width:100%; height:54px; border-radius:16px; padding:0 16px;
  background:var(--tb-bg); border:1px solid var(--tb-line);
  font-family:var(--tb-font); font-size:15px; color:var(--tb-navy);
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.tb-cta__box textarea{ height:auto; padding:14px 16px; }
.tb-cta__box input::placeholder, .tb-cta__box textarea::placeholder{ color:var(--tb-muted-2); }
.tb-cta__box input:focus, .tb-cta__box select:focus, .tb-cta__box textarea:focus{
  outline:none; background:#fff; border-color:var(--tb-blue);
  box-shadow:0 0 0 3px rgba(67,83,255,.12);
}
.tb-cta__box .ff-btn-submit,
.tb-cta__box button[type="submit"]{
  width:100% !important; height:56px !important; border:none !important; border-radius:16px !important;
  background:var(--tb-yellow) !important; color:var(--tb-navy) !important;
  font-family:var(--tb-font) !important; font-size:16.5px !important; font-weight:700 !important; cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
}
.tb-cta__box .ff-btn-submit:hover,
.tb-cta__box button[type="submit"]:hover{
  transform:translateY(-2px); box-shadow:0 12px 28px rgba(250,199,16,.4);
}

/* ---------- FAQ ---------- */
.tb-faq{ display:grid; grid-template-columns:.85fr 1.15fr; gap:64px; align-items:start; }
.tb-faq__list{ display:flex; flex-direction:column; gap:12px; }
.tb-acc{ position:relative; background:var(--tb-bg); border-radius:var(--tb-r-md); overflow:hidden; transition:background .2s ease, box-shadow .2s ease; }
.tb-acc:hover{ background:#EAF1FC; }
.tb-acc__in{ position:absolute; opacity:0; pointer-events:none; }
.tb-acc__lab{
  display:flex; align-items:center; gap:14px; cursor:pointer;
  padding:22px 24px; margin:0; user-select:none;
}
.tb-acc__q{ flex:1; font-size:17px; font-weight:700; letter-spacing:-.01em; }
.tb-acc__sign{
  width:30px; height:30px; flex-shrink:0; border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  background:#fff; color:var(--tb-blue); font-size:20px; font-weight:600; line-height:1;
  transition:transform .3s ease, background .3s ease, color .3s ease;
}
.tb-acc__a{
  display:grid; grid-template-rows:0fr;
  transition:grid-template-rows .35s ease;
}
.tb-acc__a > div{ overflow:hidden; }
.tb-acc__a p{
  font-size:15px; line-height:1.6; color:var(--tb-muted);
  max-width:640px; padding:0 24px 22px; text-wrap:pretty;
}
.tb-acc__in:checked ~ .tb-acc__a{ grid-template-rows:1fr; }
.tb-acc__in:checked ~ .tb-acc__lab .tb-acc__sign{
  transform:rotate(45deg); background:var(--tb-navy); color:#fff;
}
.tb-acc:has(.tb-acc__in:checked){ background:#fff; box-shadow:var(--tb-shadow); }

/* ==========================================================================
   FOOTER (override sur cette page)
   ========================================================================== */
body.tb-page footer{
  background:var(--tb-navy); color:#fff;
  border-top:none; margin-top:0;
}
body.tb-page footer a{ color:var(--tb-ink-soft2); }
body.tb-page footer a:hover{ color:var(--tb-yellow); }
body.tb-page footer h5{ color:#fff; }
body.tb-page footer .social a{
  width:38px; height:38px; border-radius:999px;
  background:rgba(255,255,255,.08); color:#fff;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
body.tb-page footer .social a:hover{
  background:var(--tb-yellow); color:var(--tb-navy); transform:translateY(-2px);
}
body.tb-page footer .text-bleu-nuit{ color:var(--tb-ink-soft2) !important; }
body.tb-page footer .text-bleu-nuit:hover{ color:var(--tb-yellow) !important; }
body.tb-page footer input[type="text"],
body.tb-page footer input[type="email"],
body.tb-page footer select,
body.tb-page footer textarea{
  width:100%; height:50px; border-radius:14px; padding:0 14px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  color:#fff; font-family:var(--tb-font); font-size:14.5px;
}
body.tb-page footer input::placeholder, body.tb-page footer textarea::placeholder{ color:var(--tb-ink-soft); }
body.tb-page footer input:focus, body.tb-page footer select:focus, body.tb-page footer textarea:focus{
  outline:none; border-color:var(--tb-yellow); background:rgba(255,255,255,.1);
}
body.tb-page footer .ff-el-input--label label{ color:var(--tb-ink-soft2); font-size:12.5px; font-weight:600; }
body.tb-page footer .ff-t-container{ display:flex !important; flex-direction:column !important; gap:12px; }
body.tb-page footer .ff-t-cell{ flex-basis:100% !important; width:100% !important; min-width:0 !important; }
body.tb-page footer .ff-btn-submit,
body.tb-page footer button[type="submit"]{
  width:100% !important; height:52px !important; border:none !important; border-radius:14px !important;
  background:var(--tb-yellow) !important; color:var(--tb-navy) !important;
  font-family:var(--tb-font) !important; font-weight:700 !important; font-size:15.5px !important; cursor:pointer;
  transition:transform .2s ease;
}
body.tb-page footer .ff-btn-submit:hover,
body.tb-page footer button[type="submit"]:hover{ transform:translateY(-2px); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1200px){
  .tb-bento__card--a,.tb-bento__card--b{ grid-column:span 2; }
}

@media (max-width:992px){
  .tb-wrap{ padding:0 20px; }
  .tb-hero{ padding:72px 0 110px; }
  .tb-hero__inner{ grid-template-columns:1fr; gap:44px; }
  .tb-hero__lead{ max-width:none; }
  .tb-islands__grid{ grid-template-columns:repeat(2,1fr); }
  .tb-section{ padding:72px 0; }
  .tb-steps,.tb-feats{ grid-template-columns:repeat(2,1fr); }
  .tb-split{ grid-template-columns:1fr; gap:44px; }
  .tb-road{ grid-template-columns:repeat(2,1fr); }
  .tb-cta{ padding:44px 32px; border-radius:28px; }
  .tb-cta__inner{ grid-template-columns:1fr; gap:36px; }
  .tb-faq{ grid-template-columns:1fr; gap:32px; }
  .tb-bento{ grid-template-columns:repeat(2,1fr); }
  .tb-bento__card--c,.tb-bento__card--d,.tb-bento__card--e{ grid-column:span 2; }
  .tb-bento__card--a,.tb-bento__card--b{ grid-row:span 1; }

  /* header mobile */
  body.tb-page .menu-toggle{ display:flex; }
  body.tb-page #site-navigation{
    position:absolute; top:100%; left:0; right:0;
    background:#fff; border-bottom:1px solid var(--tb-line);
    box-shadow:0 18px 40px rgba(21,29,83,.1);
    max-height:0; overflow:hidden; transition:max-height .35s ease; margin:0;
  }
  body.tb-page #nav-links{
    flex-direction:column; align-items:flex-start; gap:0; padding:8px 24px 16px;
  }
  body.tb-page #nav-links li{ width:100%; }
  body.tb-page #nav-links a{ display:block; padding:14px 0; border-bottom:1px solid var(--tb-line); }
  body.tb-page #nav-links.active{ max-height:0; }
  body.tb-page #site-navigation:has(#nav-links.active){ max-height:420px; }
  body.tb-page #site-header .downloadBtn{ display:none; }
}

@media (max-width:768px){
  .tb-hero{ padding:56px 0 96px; }
  .tb-hero__col{ gap:20px; }
  .tb-islands{ margin-top:-52px; }
  .tb-islands__grid{ grid-template-columns:1fr; padding:20px; gap:12px; }
  .tb-section{ padding:60px 0; }
  .tb-head{ margin-bottom:32px; }
  .tb-steps,.tb-feats,.tb-road,.tb-bento{ grid-template-columns:1fr; }
  .tb-bento__card--a,.tb-bento__card--b,.tb-bento__card--c,
  .tb-bento__card--d,.tb-bento__card--e{ grid-column:span 1; }
  .tb-bento__split{ grid-template-columns:1fr; }
  .tb-btn{ width:100%; }
  .tb-actions{ width:100%; }
  .tb-cta{ padding:32px 22px; }
  .tb-cta__box{ padding:24px; border-radius:22px; }
  .tb-track__meta{ display:none; }
  .tb-phone{ width:290px; }
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{ animation:none !important; transition:none !important; }
}
