@import "./bugermenu.css"; 

/* ====== Design Tokens ====== */
:root {
  --brand: #ff7a00;
  --brand-600: #e86900;
  --ink: #0f172a;
  --muted: #64748b;
  --surface: #ffffff;
  --surface-muted: #f6f9fc;
  --border: #e2e8f0;
  --card: #ffffff;

  --shadow-1: 0 1px 0 rgba(2,8,23,.06);
  --shadow-2: 0 10px 32px rgba(2,8,23,.10);
  --shadow-brand: 0 12px 36px rgba(255,122,0,.14);

  --radius: 16px;
}

/* ====== Base ====== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Ubuntu, Cantarell, Noto Sans, Arial;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { line-height: 1.1; margin: 0; }
.lead { color: var(--muted); }
.title-xl { font-size: clamp(28px, 4vw, 40px); font-weight: 700; }
.title-lg { font-size: clamp(22px, 3vw, 34px); font-weight: 800; }

section { padding: 72px 0;scroll-margin-top: 72px; /* mets la hauteur de ton header */ }
.section-muted { background: var(--surface-muted); }

.grid { display: grid; gap: 20px; }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .g-2, .g-3 { grid-template-columns: 1fr; }
}

/* ====== Cards (ajout) ====== */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}
.card-inner {
  padding: 18px 16px;
}

/* ====== Header / Nav ====== */
header.site-header {
  position: sticky; top: 0; z-index: 9999;
  background-color: rgba(255,255,255,0.72);
  -webkit-backdrop-filter: saturate(100%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 900; }

/* logo */
#logo {  display:flex;  flex-direction:row;  align-items:center;  justify-content:center;}
#logo .Container-loader-icon {  width:35px;  height:35px;  margin-left:0;  position:relative;}
#logoText {  color:#0f172a;  font-size:1.125rem;  margin-left:10px;}
/* Pulse rings */
.loader-icon {  position:relative;  display:block;  width:100%;  height:100%;}
.loader-icon:before,
.loader-icon:after {content:"";  position:absolute;  inset:0;  border:3px solid #0000002c;  border-radius:50%;  animation:pulse 1s ease-out infinite;}
.loader-icon:after {  border-color:#0000009f;  animation-duration:3.2s;  animation-delay:.45s;}

@keyframes pulse {
  0%   { transform:scale(.5); opacity:0 }
  50%  { opacity:1 }
  100% { transform:scale(1); opacity:0 }
}

@media (prefers-reduced-motion:reduce){
  .loader-icon:before,
  .loader-icon:after {
    animation:none;
    opacity:1;
  }
}

/* main */
.nav-main { display: flex; align-items: center; gap: 1.2rem; }
.nav-main>li { list-style: none; position: relative; }
.nav-link { font-weight: 700; color: #1f2937; opacity: .92; display: flex; align-items: center; gap: .4rem; }
.nav-link:hover { color: var(--brand-600); opacity: 1; }

.nav-cta { display: flex; align-items: center; gap: .6rem; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1rem; border-radius: 999px; font-weight: 800; border: 1px solid transparent; cursor: pointer; transition: .25s; }
.btn.primary { background: var(--ink); color: #fff; }
.btn.primary:hover { background: #1f2937; }
.btn.outline { background: transparent; border-color: var(--border); }

/* ====== Hero ====== */
.hero {
  background: linear-gradient(180deg, #fff3e6 0, #ffffff 42%);
  margin: -73px auto 0;
  padding: 140px 0 70px 0;
}
.hero .chip {
  display:inline-block; padding:.35rem .6rem; border-radius:999px;
  background:#fff7ed; border:1px solid #fed7aa; color:#9a3412; font-weight:700; font-size:.8rem;
  margin-bottom: 16px;
}
.app-shot{
  width:100%; max-width:400px; border:none; border-radius:24px;
  animation: app-shot 3s ease-in-out infinite;
}
@keyframes app-shot { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.store-buttons{display:flex;gap:12px;flex-wrap:wrap;margin-top:20px}
.btn-store{flex:1;min-width:250px;max-width:280px;height:56px;border-radius:50px;background:#000;display:flex;align-items:center;justify-content:center;padding:0 14px;color:#fff;border:1px solid #000}
.btn-store .inner{display:flex;align-items:center;gap:12px}
.store-icon{width:28px;height:28px;flex:0 0 28px}
.store-text{display:flex;flex-direction:column;line-height:1}
.store-top{font-size:12px;opacity:.85;letter-spacing:.02em}
.store-brand{font-size:22px;font-weight:700}
@media (max-width:480px){
  .btn-store{min-width:100%;max-width:100%;height:52px}
  .store-brand{font-size:20px}
  .store-icon{width:24px;height:24px;flex-basis:24px}
}

/* ====== Benefits / accents ====== */
.brand-grad{ background:linear-gradient(90deg,var(--brand),#ffb463); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }

/* ====== Stats wave ====== */
.txp-stats__wave-line{ fill:none; stroke: rgba(255,122,0,.35); stroke-width:3; stroke-linecap:round; }

/* ====== Footer ====== */
/* ===== Footer ===== */
.txp-footer {
  background: #111; /* noir profond */
  color: #eee;
  padding: 60px 20px 20px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #bbb;
}

.txp-footer h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 600;
  position: relative;
}

.txp-footer h4::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(135deg, #ff7a00, #ffb463);
  margin-top: 6px;
  border-radius: 2px;
}

.foot-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foot-list li {
  margin: 6px 0;
}

.foot-list a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.2s ease;
}

.foot-list a:hover {
  color: #ff7a00; /* orange brand */
}

/* Bas du footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}

/* ====== Reduced motion ====== */
@media (prefers-reduced-motion: reduce){
  .app-shot{ animation: none; }
}

/* =========================
   STATS (vague + bulles)
   ========================= */
.txp-stats{
  /* variables locales (tu peux ajuster) */
  --gap-min: 16px;
  --gap-max: 42px;
  --bubble-min: 160px;
  --bubble-ideal: 24vw;
  --bubble-max: 200px;
  --ring: rgba(255,122,0,.50);

  position: relative;
  background: #fff;
  padding: clamp(2.2rem, 4vw, 3rem) 1rem clamp(2rem, 4vw, 3rem);
  overflow: hidden;
}
.txp-stats__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,122,0,0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255,122,0,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Vague pleine largeur */
.txp-stats__wave{
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 100vw; height: 240px;
  z-index: 0;
}
.txp-stats__wave-line{
  fill: none;
  stroke: rgba(255,122,0,.35);
  stroke-width: 3;
  stroke-linecap: round;
}

.txp-stats__inner{
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; text-align: center;
}

/* Canvas bulles + points */
.txp-stats__canvas{
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: clamp(12px, 1.6vw, 22px);
}

.txp-bubbles{
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: clamp(var(--gap-min), 2vw, var(--gap-max));
}

.txp-bubble{
  --size: clamp(var(--bubble-min), var(--bubble-ideal), var(--bubble-max));
  width: var(--size); height: var(--size);
  margin-inline: auto;
  border-radius: 50%;
  background: #FFF5EB;
  box-shadow:
    0 18px 54px rgba(255,122,0,.12),
    0 10px 24px rgba(2,8,23,.06);
  display: grid; place-items: center;
  transform: translateY(var(--offset, 0));
}
.txp-bubble__content{ text-align: center; }
.txp-bubble strong{
  display: block; font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  line-height: 1.1;
}
.txp-bubble span{
  color: var(--muted);
  font-weight: 700;
  font-size: clamp(.82rem, 1.6vw, 1rem);
}

/* petits décalages pour reproduire ta maquette */
.txp-bubble:nth-child(1){ --offset: 8px; }
.txp-bubble:nth-child(2){ --offset: -12px; }
.txp-bubble:nth-child(3){ --offset: 10px; }

/* points décoratifs */
.txp-dot{
  position: absolute; z-index: 1; display: block;
  transform: translate(-50%,-50%);
}
.txp-dot--brand{
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--brand);
}
.txp-dot--ring{
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--ring);
  background: transparent;
}
/* placements (respecte ton HTML: 3 spans) */
.txp-stats__canvas .txp-dot--brand:nth-of-type(2){ left: 64%; top: 86%; }
.txp-stats__canvas .txp-dot--ring:nth-of-type(3){  left: 28%; top: 92%; }
.txp-stats__canvas .txp-dot--brand:nth-of-type(4){ left: 92%; top: 78%; }

/* responsive */
@media (max-width: 720px){
  .txp-stats__wave{ display:none; }
  .txp-bubbles{
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 420px;
    margin-inline: auto;
  }
  .txp-bubble{
    --size: clamp(86px, 34vw, 130px);
    --offset: 0 !important;
    transform: none !important;
  }
}
/* =========================
   AVIS (gauche/texte + droite/cartes)
   ========================= */
.txp-reviews{
  background: #fff;
  padding: clamp(5.2rem, 4vw, 3rem) 1rem clamp(3rem, 5vw, 4rem);
  background: radial-gradient(900px 360px at 10% -10%, rgba(255, 122, 0, .06), transparent 60%), radial-gradient(700px 280px at 95% 0%, rgba(255, 180, 99, .08), transparent 60%);
}
.txp-reviews__inner{
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 2.6rem);
}
@media(max-width: 900px){
  .txp-reviews__inner{ grid-template-columns: 1fr; }
}

.txp-reviews__metric{
  font-weight: 700; color: var(--muted);
}
.txp-reviews__metric span{
  font-size: 2.4rem; font-weight: 700;
  margin-right: 8px;
}

.txp-reviews__right{ min-height: 420px; }
.txp-reviews__list{
  display: grid; gap: 1rem;
  max-height: 400px; overflow-y: auto;
  padding-right:6px; scroll-behavior:smooth;
}

/* ===== Scrollbar sans flèches (WebKit/Chromium) ===== */

/* largeur + track transparent */
.txp-reviews__list::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* cache totalement les boutons haut/bas/gauche/droite */
.txp-reviews__list::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* certains Chrome/Edge nécessitent de cibler les single-button */
.txp-reviews__list::-webkit-scrollbar-button:single-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* ciblage explicite des 4 directions (couverture totale) */
.txp-reviews__list::-webkit-scrollbar-button:vertical:decrement,
.txp-reviews__list::-webkit-scrollbar-button:vertical:increment,
.txp-reviews__list::-webkit-scrollbar-button:horizontal:decrement,
.txp-reviews__list::-webkit-scrollbar-button:horizontal:increment {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* track + thumb (style au choix) */
.txp-reviews__list::-webkit-scrollbar-track {
  background: transparent;
}
.txp-reviews__list::-webkit-scrollbar-thumb {
  background: rgba(255,122,0,0.35);
  border-radius: 10px;
  border: 2px solid transparent;    /* évite l’effet “cap” en haut/bas */
  background-clip: padding-box;
  transition: background .2s ease;
}
.txp-reviews__list::-webkit-scrollbar-thumb:hover {
  background: rgba(255,122,0,0.55);
}

/* Firefox : pas de flèches, mais on harmonise les couleurs */
.txp-reviews__list {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,122,0,0.35) transparent;
}

/* Carte d’avis */
.txp-review{
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 14px;
  padding: 1rem 1.2rem;
}
.txp-review__head{ display:flex; align-items:center; gap:.8rem; margin-bottom:.6rem; }
.txp-review__avatar{
  width: 40px; height: 40px; border-radius: 50%;
  display:grid; place-items:center;
  font-weight: 900; color:#000000;
  background: linear-gradient(135deg,#ff9a2e,var(--brand));
  box-shadow: 0 2px 10px rgba(255,122,0,.25);
}
.txp-review__name{ font-weight: 700; color:#0b1220; }
.txp-review__stars{ color: #ff9a2e; font-size: 1.25rem; letter-spacing: .1em; }
.txp-review__text{ color:#334155; margin:.4rem 0 .6rem; }
.txp-review__date{ color:#94a3b8; font-size:.85rem; }


/* =========================
   FAQ — style carte 2 colonnes
   ========================= */
.txp-faq{
  background: #f6f9fc; /* section-muted douce */
  padding: clamp(2.4rem, 5vw, 4rem) 1rem clamp(3rem, 6vw, 4.6rem);
}
.txp-faq__inner{
  max-width: 1200px; margin: 0 auto; text-align: center;
}

.txp-faq__eyebrow{
  color: var(--brand);
  font-weight: 900;
  letter-spacing: .12em;
  font-size: .85rem;
  margin: 0 0 .4rem 0;
  text-transform: uppercase;
}

/* colonnes multicolumn, chaque item garde sa hauteur */
.txp-faq__grid{
  column-count: 2;
  column-gap: 18px;
}
.txp-faq__item{
  break-inside: avoid;
  display: block;
  background: #fff;
  border-radius: 25px;
  width: 100%;
  margin: 0 0 14px;
}

@media (max-width: 900px){
  .txp-faq__grid{ column-count: 1; }
}


/* résumé (ligne cliquable) */
.txp-faq__item summary{
  list-style: none; /* cache le marker défaut */
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  font-weight: 800; color: #0b1220;
  cursor: pointer;
  position: relative;
}
.txp-faq__item summary::-webkit-details-marker{ display: none; }

/* chevron */
.txp-faq__item .chev{
  width: 20px; height: 20px;
  transition: transform .25s ease;
  color: #0b1220;
  opacity: .9;
}
.txp-faq__item[open] .chev{ transform: rotate(180deg); }

/* état focus/hover */
.txp-faq__item summary:focus-visible{
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 12px;
}
.txp-faq__item:hover{
  border-color: #dbe7f3;
  box-shadow: 0 10px 26px rgba(2,8,23,.06);
}

/* contenu */
.txp-faq__item .answer{
  padding: 0 18px 16px 18px;
  color: #334155;
  line-height: 1.6;
  text-align: left;
  animation: faq-reveal .22s ease;
}
@keyframes faq-reveal{
  from{ opacity: 0; transform: translateY(-4px); }
  to{ opacity: 1; transform: translateY(0); }
}
/* =========================
   le necessaire
   ========================= */
.necessaire-orange {
  padding: 60px 0;
  background: linear-gradient(135deg, #ff7a00, #ffb463);
  color: #fff;
  text-align: center;
  clip-path: polygon(0 5%, 10% 5%, 20% 7%, 30% 5%, 40% 0%, 50% 0%, 60% 2%, 70% 0%, 80% 3%, 90% 5%, 100% 4%, 100% 100%, 0 100%);
}

.nec-title {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.nec-icons {
  display: flex;
  justify-content: space-evenly;
  gap: 60px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.12);
  padding: 2.5rem;
  border-radius: 20px;
}

.nec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform .3s ease, color .3s ease;
}
.nec-item:hover {
  transform: translateY(-6px);
  color: #ffe3cc;
}

.nec-item .icon {
  height: 70px;
  width: 70px;
}

.nec-item span {
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
}

/* Responsive */
@media (max-width: 768px) {
  .nec-icons {
    gap: 30px;
    padding: 1.8rem;
  }
  .nec-item .icon {
    height: 55px;
    width: 55px;
  }
}


/* =========================
   Comment ca marche 
   ========================= */
/* ===== Workflow simple ===== */
.workflow-simple {
  padding: 60px 0 0;
  background: #f6f9fc;
  text-align: center;
}

.workflow-simple .wf-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.workflow-simple .wf-step {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: #f9fafb;
  border-radius: 12px;
  padding: 30px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.workflow-simple .wf-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9a2e, var(--brand));
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255,122,0,0.25);
}

.workflow-simple h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  color: #0f172a;
}

/* =========================
   pour qui ?
   ========================= */
/* ===== POUR QUI ? avec images ===== */
.pqfx{ background:#f6f9fc; padding: clamp(2.2rem,5vw,3.6rem) 0; }

.pqfx-grid{
  display:grid; grid-template-columns: 1.05fr 1.25fr;
  gap: clamp(18px,3vw,36px); align-items:center;
}
@media (max-width: 1024px){ .pqfx-grid{ grid-template-columns: 1fr; } }

/* collage images */
.pqfx-collage{
  display:grid; grid-template-columns: 1fr 1fr;
  gap: clamp(12px,2vw,16px);
  background: linear-gradient(180deg,#fff7f1,#fff);
  border: 2px dashed #ffd7b3;
  border-radius: 28px;
  padding: clamp(12px,2vw,16px);
}
.pqfx-img{
  width:100%; height:auto;
  border-radius: 18px;
  object-fit: cover;
  display:block;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pqfx-img:hover{
  transform: scale(1.04);
  box-shadow: 0 12px 28px rgba(0,0,0,.15);
}

/* droite */
.pqfx-eyebrow{
  color: var(--brand);
  font-weight: 900; letter-spacing: .16em; text-transform: uppercase;
  font-size: .82rem; margin: 0 0 .35rem 0;
}
/* liste avec check */
.pqfx-points{
  list-style:none; padding:0; margin:20px 0 0 0;
  display:grid; gap:18px;
}

.pqfx-points li a{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:14px 18px;
  border-radius:12px;
  text-decoration:none;
  transition: all .25s ease;
  background:#fff;
}

.pqfx-points li a:hover{
  transform: translateY(-3px);
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.pqfx-points .check{
  flex:0 0 32px; height:32px;
  border-radius:50%;
  background: linear-gradient(145deg, #ff7a00, #ffb463);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 0 8px rgba(255,122,0,0.6), inset 0 0 4px rgba(255,255,255,0.4);
  transition: transform .25s ease, box-shadow .25s ease;
}

.pqfx-points .check .icon-check{
  width:25px; height:25px;
  fill:#fff;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.8));
}

.pqfx-points .check:hover{
  transform: scale(1.1);
  box-shadow: 0 0 14px rgba(255,122,0,0.9), inset 0 0 6px rgba(255,255,255,0.6);
}



.pqfx-points .text{ flex:1; }
.pqfx-points .text span{
  display:block;
  font-weight:800; font-size:1rem; color:#0b1220;
}
.pqfx-points .text small{
  display:block; font-size:.85rem; color:#64748b;
}

/* Flèche à droite */
.pqfx-points .arrow{
  font-size:1.2rem;
  color:#ff7a00;
  transition: transform .25s ease;
}
.pqfx-points li a:hover .arrow{
  transform: translateX(5px);
}
