:root{
  --blue:#4B87D8;
  --blue-700:#2E5FA8;
  --green:#6FD13A;

  --text:#0F172A;
  --muted:#475569;

  --border:#E5E7EB;

  --bg:#FCFCFD;       
  --bg-soft:#F3F6FB;  
  --radius:16px;

  --shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 35px rgba(15, 23, 42, 0.08);
}

*{ box-sizing:border-box; }
html,body{ 
  margin:0; padding:0;
  height: 100%;
}

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
  line-height:1.55;
  display: flex;
  flex-direction: column;
}
main{
  flex: 1 0 auto;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  background:rgba(252,252,253,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,23,42,0.08);
  z-index:10;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:16px;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand-text{ display:flex; flex-direction:column; gap:2px; }
.brand-name{ font-weight:950;font-size: 15px;line-height: 1.1; letter-spacing:-0.03em; }
.brand-tagline{ font-size:12px; opacity: 0.9; color:var(--muted); font-weight:650; }

/* =========================
   LOGO FFVÉLO – HEADER
   ========================= */
.brand-mark.brand-mark--logo{
  background: none;
  box-shadow: none;
  border: 0;
  padding: 0;
  width: auto;
  height: auto;
}
.brand-mark.brand-mark--logo img{
  height: 44px;        /* taille desktop */
  width: auto;
  display: block;
}
/* mobile */
@media (max-width: 980px){
  .brand-mark.brand-mark--logo img{
    height: 34px;
  }
}

.nav{ display:flex; align-items:center; gap:6px; }

.nav-link{
  position:relative;
  font-size:15px;
  color:rgba(15,23,42,0.72);
  padding:10px 12px;
  border-radius:12px;
  font-weight:800;
  transition: background .15s ease, color .15s ease;
}

.nav-link:hover{
  background: rgba(15,23,42,0.04);
  color: var(--text);
}

/* underline animé */
.nav-link::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:7px;
  height:2px;
  border-radius:99px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin:left;
  transition: transform .18s ease;
  opacity:0.85;
}

.nav-link:hover::after{
  transform: scaleX(1);
}

.nav-link.is-active{
  background: rgba(15,23,42,0.04);
  color: var(--text);
}
.nav-link.is-active::after{
  transform: scaleX(1);
}

/* CTA “Rejoindre” */
.nav-cta{
  min-width: 150px;
  justify-content: center;
  margin-left:6px;
  padding:10px 14px;
  border-radius:14px;
  font-weight:950;
  color:#fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border:1px solid rgba(255,255,255,0.0);
  box-shadow: 0 16px 34px rgba(46,95,168,0.20);
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(46,95,168,0.26);
}


/* burger */
/* --- Burger (animation vers X) --- */
.burger{
  display:none;
  width:46px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.10);
  background:
    radial-gradient(140px 60px at 20% 0%, rgba(75,135,216,0.18), transparent 60%),
    radial-gradient(140px 60px at 80% 100%, rgba(121,185,76,0.16), transparent 60%),
    rgba(255,255,255,0.75);
  cursor:pointer;
  padding:0 11px;
  position:relative;
}
.burger span{
  display:block;
  height:2px;
  margin:6px 0;
  background:rgba(15,23,42,0.85);
  border-radius:999px;
  transition: transform .18s ease, opacity .18s ease;
}
body.menu-open .burger span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
body.menu-open .burger span:nth-child(2){
  opacity:0;
}
body.menu-open .burger span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Drawer --- */
.drawer{
  position:fixed;
  inset:0;
  z-index:50;
  pointer-events:none;
  opacity:0;
  transition: opacity .18s ease;
}
body.menu-open .drawer{
  opacity:1;
  pointer-events:auto;
}

.drawer-backdrop{
  position:absolute;
  inset:0;
  background: rgba(15,23,42,0.45);
  backdrop-filter: blur(6px);
}

.drawer-panel{
  position:absolute;
  top:14px;
  right:14px;
  width:min(92vw, 380px);
  border-radius: 22px;
  border:1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(700px 260px at 15% 0%, rgba(75,135,216,0.22), transparent 60%),
    radial-gradient(650px 260px at 90% 100%, rgba(121,185,76,0.18), transparent 55%),
    rgba(252,252,253,0.92);
  box-shadow: 0 30px 90px rgba(15,23,42,0.30);
  overflow:hidden;

  transform: translateY(-6px) translateX(10px) scale(0.98);
  transition: transform .18s ease;
}
body.menu-open .drawer-panel{
  transform: translateY(0) translateX(0) scale(1);
}

.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 14px 12px;
  border-bottom:1px solid rgba(15,23,42,0.08);
}

.drawer-brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.drawer-brand-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.drawer-brand-name{
  font-weight:950;
  letter-spacing:-0.03em;
}
.drawer-brand-sub{
  font-size:12px;
  color: var(--muted);
  font-weight:650;
}

.drawer-close{
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.7);
  cursor:pointer;
  font-size:16px;
  line-height:1;
}
.drawer-close:hover{
  border-color: rgba(75,135,216,0.22);
}

.drawer-nav{
  padding:12px 14px 6px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.drawer-link{
  position:relative;
  padding:12px 12px;
  border-radius:16px;
  font-weight:900;
  color: rgba(15,23,42,0.82);
  background: rgba(255,255,255,0.65);
  border:1px solid rgba(15,23,42,0.08);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.drawer-link:hover{
  transform: translateY(-1px);
  border-color: rgba(75,135,216,0.22);
}
.drawer-link.is-active{
  background: rgba(75,135,216,0.10);
  border-color: rgba(75,135,216,0.22);
  color: var(--text);
}
.drawer-pill{
  color: rgba(15,23,42,0.78);
  border-color: rgba(111,209,58,0.35);
}

/* CTA zone */
.drawer-cta{
  padding:12px 14px 14px;
  display:flex;
  flex-direction:column;
  gap:10px;
  border-top:1px solid rgba(15,23,42,0.06);
}
.btn-wide{
  width:100%;
  justify-content:center;
}

/* footer pills */
.drawer-foot{
  padding:0 14px 16px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.drawer-pill{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  color: rgba(15,23,42,0.74);
  border:1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.60);
}

/* afficher burger en mobile */
@media (max-width: 980px){
  .burger{ display:block; }
}

.mobile-menu{
  border-bottom:1px solid rgba(229,231,235,0.9);
  background: rgba(252,252,253,0.95);
  backdrop-filter: blur(10px);
}
.mobile-inner{
  padding:10px 0 16px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.mobile-inner a{
  padding:12px 10px;
  border-radius:12px;
  color:var(--text);
  border:1px solid rgba(15,23,42,0.08);
  background:rgba(255,255,255,0.7);
}
.mobile-inner a:hover{
  border-color: rgba(75,135,216,0.25);
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:800;
  font-size:14px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(135deg, var(--blue), var(--green));
  color:#fff;
  box-shadow: 0 14px 34px rgba(46,95,168,0.20);
}
.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(46,95,168,0.26);
  filter: saturate(1.08);
}

.btn-ghost{
  background:rgba(255,255,255,0.75);
  border-color: rgba(15,23,42,0.10);
  color:var(--text);
}
.btn-ghost:hover{
  transform: translateY(-1px);
  border-color: rgba(121,185,76,0.28);
  box-shadow: 0 14px 34px rgba(121,185,76,0.12);
}

.btn-outline{
  background:rgba(255,255,255,0.65);
  border-color: rgba(75,135,216,0.30);
  color: var(--blue-700);
}
.btn-outline:hover{
  transform: translateY(-1px);
  background: rgba(75,135,216,0.08);
}

/* HERO */
.hero{ padding:44px 0 18px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap:28px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  color:var(--blue-700);
  background: rgba(75,135,216,0.12);
  padding:7px 12px;
  border-radius:999px;
  margin:0 0 12px;
}
.hero h1{
  font-size:46px;
  line-height:1.05;
  letter-spacing:-0.04em;
  margin:0 0 12px;
}
.lead{
  color:var(--muted);
  margin:0 0 18px;
  max-width:60ch;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:16px; }

.hero-media--contain{
  position:relative;
  border-radius: calc(var(--radius) + 10px);
  overflow:hidden;
  border:2px solid rgba(15,23,42,0.10);
  box-shadow: var(--shadow);
}

.hero-media--contain .hero-photo-bg{
  position:absolute;
  inset:0;
  z-index: 0;
  background:
    radial-gradient(900px 320px at 20% 10%, rgba(75,135,216,0.28), transparent 60%),
    radial-gradient(800px 300px at 90% 90%, rgba(111,209,58,0.22), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.65), rgba(255,255,255,0.25));
}


/* image nette, entière */
.hero-media--contain img{
  position:relative;
  width:100%;
  height: 460px;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.hero-copy--watermark{
  position:relative;
  z-index: 1;
}

.hero-copy--watermark::before{
  content:"";
  position:absolute;
  left:-30px;
  top:-10px;
  width: 520px;
  height: 520px;
  background-image: url("/assets/img/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  opacity: 0.2;                 
  filter: saturate(1.15) contrast(1.15);
  transform: rotate(-8deg);
  pointer-events:none;
  box-shadow:
    0 0 140px rgba(111,209,58,0.18),  /* vert club */
    0 0 220px rgba(75,135,216,0.10);  /* bleu club */
}
@media (max-width: 980px){
  .hero-copy--watermark::before{
    width: 380px;
    height: 380px;
    left:-18px;
    top:-18px;
    opacity: 0.2;
  }
}

/* proof cards (dans hero) */
.proof-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.proof-card{
  border-radius: var(--radius);
  padding:14px 14px;
  border:1px solid rgba(15,23,42,0.10);
  background:
    radial-gradient(420px 140px at 0% 0%, rgba(75,135,216,0.10), transparent 60%),
    radial-gradient(420px 140px at 100% 100%, rgba(121,185,76,0.10), transparent 60%),
    rgba(255,255,255,0.78);
  box-shadow: var(--shadow-soft);
}
.proof-k{ margin:0 0 6px; color:var(--muted); font-weight:700; font-size:12px; }
.proof-v{ margin:0 0 2px; font-size:18px; font-weight:900; letter-spacing:-0.01em; }
.proof-d{ margin:0; color:var(--muted); font-weight:600; font-size:13px; }

.proof-card{
  position:relative;
  overflow:hidden;
}
.proof-card::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity:0.9;
}
.proof-v{
  font-size:19px;
}

/* SECTIONS */
.section{ padding:40px 0; }
.section-soft{
  background: var(--bg-soft);
  border-top:1px solid rgba(229,231,235,0.9);
  border-bottom:1px solid rgba(229,231,235,0.9);
}
.section-head{ margin-bottom:18px; }
.section-head h2{
  margin:0 0 6px;
  letter-spacing:-0.02em;
  font-weight:900;
}
.section-head p{ margin:0; color:var(--muted); font-weight:600; }
.section-head.row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}

/* ===== INTRO SECTION (remplace les 3 piliers) ===== */
.intro{
  padding-top: 34px;
}

.intro-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:18px;
  align-items:stretch;
}

.intro-copy h2{
  margin:0 0 10px;
  font-weight:950;
  letter-spacing:-0.03em;
}

.intro-lead{
  margin:0 0 16px;
  color:var(--muted);
  font-weight:650;
  max-width:70ch;
}

.intro-points{
  display:grid;
  gap:10px;
  margin: 0 0 16px;
}

.point{
  display:flex;
  gap:12px;
  padding:12px 12px;
  border-radius: 16px;
  border:1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow-soft);
}

.point-icon{
  width:34px;
  height:34px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight:900;
  color: rgba(15,23,42,0.82);
  border:1px solid rgba(15,23,42,0.10);
  background:
    radial-gradient(160px 60px at 20% 0%, rgba(75,135,216,0.14), transparent 60%),
    radial-gradient(160px 60px at 80% 100%, rgba(111,209,58,0.12), transparent 60%),
    rgba(255,255,255,0.70);
}

.point-title{
  margin:0 0 2px;
  font-weight:950;
  letter-spacing:-0.01em;
}
.point-text{
  margin:0;
  color:var(--muted);
  font-weight:650;
}

.intro-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.point{
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.point:hover{
  transform: translateY(-1px);
  border-color: rgba(75,135,216,0.22);
  box-shadow: 0 18px 45px rgba(15,23,42,0.10);
}

.intro-card{
  border-radius: calc(var(--radius) + 10px);
  border:1px solid rgba(15,23,42,0.10);
  background:
    radial-gradient(900px 260px at 10% 0%, rgba(75,135,216,0.14), transparent 60%),
    radial-gradient(800px 260px at 90% 100%, rgba(111,209,58,0.12), transparent 55%),
    rgba(255,255,255,0.80);
  box-shadow: var(--shadow-soft);
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height: 100%;
}
/* ===== INVERSION VISUELLE INTRO ===== */
@media (min-width: 981px){
  .intro-grid{
    grid-template-columns: 0.9fr 1.1fr; /* visuel à gauche, texte à droite */
  }

  .intro-card{
    order: 1; /* passe à gauche */
    min-height: 100%;
  }

  .intro-copy{
    order: 2; /* passe à droite */
  }
}

.intro-card-kicker{
  margin:0 0 12px;
  font-weight:900;
  color: var(--blue-700);
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(75,135,216,0.12);
  width: fit-content;
}

.mini-list{
  display:grid;
  gap:12px;
}

.mini-row{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.mini-dot{
  width:10px;
  height:10px;
  border-radius:99px;
  margin-top:6px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 0 0 4px rgba(75,135,216,0.08);
}

.mini-title{
  margin:0 0 2px;
  font-weight:950;
}
.mini-text{
  margin:0;
  color:var(--muted);
  font-weight:650;
}

.intro-card-footer{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(15,23,42,0.08);
}

.link-strong{
  font-weight:950;
  color: var(--blue-700);
}
.link-strong:hover{
  text-decoration: underline;
}

/* responsive */
@media (max-width: 980px){
  .intro-grid{ grid-template-columns: 1fr; }
}



/* band dark */
.band-dark{ padding:26px 0; }
.band-inner{
  border-radius: calc(var(--radius) + 10px);
  padding:24px;
  color:#fff;
  border:1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(900px 280px at 10% 20%, rgba(75,135,216,0.42), transparent 60%),
    radial-gradient(800px 260px at 90% 90%, rgba(121,185,76,0.36), transparent 55%),
    linear-gradient(180deg, #0B1220, #0F172A);
  box-shadow: 0 22px 70px rgba(15,23,42,0.22);
}
.band-inner h2{ margin:0 0 6px; font-weight:950; letter-spacing:-0.02em; }
.band-inner p{ margin:0; color: rgba(255,255,255,0.84); font-weight:600; max-width:72ch; }
.band-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.band-dark .btn-ghost{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  color:#fff;
}
.band-dark .btn-ghost:hover{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
}

/* ===== NEWS (magazine layout) ===== */
.news-layout{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:14px;
  align-items:stretch;
}

/* meta row */
.news-meta-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}
.news-date{
  font-size:12px;
  font-weight:800;
  color: rgba(255,255,255,0.85);
}
.news-tag, .news-badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-weight:950;
  font-size:12px;
  letter-spacing:-0.01em;
}
.news-badge{
  color:#fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 14px 30px rgba(46,95,168,0.18);
}
.news-tag{
  color: rgba(15,23,42,0.82);
  background: rgba(255,255,255,0.78);
  border:1px solid rgba(15,23,42,0.10);
}

/* featured */
.news-feature{
  border-radius: calc(var(--radius) + 10px);
  overflow:hidden;
  border:1px solid rgba(15,23,42,0.10);
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.news-feature-link{
  display:block;
  position:relative;
  min-height: 420px;
}
.news-feature-cover{
  width:100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  filter: contrast(1.06) saturate(1.06);
}
.news-feature-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, rgba(15,23,42,0.78) 0%, rgba(15,23,42,0.30) 55%, rgba(15,23,42,0.10) 100%),
    radial-gradient(800px 320px at 80% 10%, rgba(111,209,58,0.20), transparent 55%),
    radial-gradient(700px 300px at 20% 90%, rgba(75,135,216,0.20), transparent 55%);
  pointer-events:none;
}
.news-feature-content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:18px;
  color:#fff;
}
.news-feature-title{
  margin:0 0 8px;
  font-weight:950;
  letter-spacing:-0.03em;
  font-size:24px;
}
.news-feature-excerpt{
  margin:0 0 12px;
  color: rgba(255,255,255,0.84);
  font-weight:650;
  max-width: 60ch;
}
.news-read{
  display:inline-flex;
  font-weight:950;
  color: #fff;
  text-decoration:none;
}
.news-feature-link:hover .news-feature-cover{
  transform: scale(1.06);
}
.news-feature-link:hover .news-read{
  text-decoration: underline;
}

/* list right */
.news-list{
  display:grid;
  gap:14px;
}

.news-item{
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  border:1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.news-item:hover{
  transform: translateY(-2px);
  border-color: rgba(75,135,216,0.22);
  box-shadow: 0 18px 45px rgba(15,23,42,0.10);
}
.news-item-link{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap:0;
}
.news-item-cover{
  width:110px;
  height:100%;
  object-fit: cover;
}
.news-item-body{
  padding:14px;
}
.news-item-body .news-date{
  color: rgba(15,23,42,0.58);
}
.news-item-title{
  margin:0 0 6px;
  font-weight:950;
  letter-spacing:-0.02em;
}
.news-item-excerpt{
  margin:0 0 10px;
  color: var(--muted);
  font-weight:650;
}

/* responsive */
@media (max-width: 980px){
  .news-layout{
    grid-template-columns: 1fr;
  }
  .news-feature-link,
  .news-feature-cover{
    min-height: 320px;
    height: 320px;
  }
  .news-item-link{
    grid-template-columns: 120px 1fr;
  }
}

/* ===== END SECTION (CTA + FAQ) ===== */
.end{
  padding-top: 20px;
}

/* CTA enrichi */
.cta-strong{
  border-radius: calc(var(--radius) + 12px);
  overflow:hidden;
  border:1px solid rgba(15,23,42,0.10);
  background:
    radial-gradient(900px 240px at 15% 0%, rgba(75,135,216,0.18), transparent 60%),
    radial-gradient(800px 240px at 90% 100%, rgba(111,209,58,0.16), transparent 55%),
    rgba(255,255,255,0.86);
  box-shadow: var(--shadow-soft);
}

.cta-strong .cta-inner{
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.cta-bullets{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding: 0 22px 18px;
  border-top:1px solid rgba(15,23,42,0.08);
}

.cta-pill{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  color: rgba(15,23,42,0.74);
  border:1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.65);
}

/* FAQ */
.faq{
  margin-top: 18px;
  border-radius: calc(var(--radius) + 10px);
  border:1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}

.faq-title{
  margin: 0 0 12px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.faq-item{
  border-top:1px solid rgba(15,23,42,0.08);
  padding: 10px 0;
}
.faq-item:first-of-type{
  border-top:none;
  padding-top: 0;
}

.faq-item summary{
  cursor:pointer;
  font-weight: 950;
  color: rgba(15,23,42,0.86);
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 10px 10px;
  border-radius: 14px;
  transition: background .15s ease, border-color .15s ease;
  border:1px solid transparent;
}
.faq-item summary::-webkit-details-marker{ display:none; }

/* FAQ: chevron intuitif + rotation */
.faq-item summary::after{
  content:"▾";
  font-weight: 950;
  color: rgba(15,23,42,0.60);
  display:inline-flex;
  width: 28px;
  height: 28px;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(15,23,42,0.10);
  transition: transform .18s ease, background .15s ease, border-color .15s ease;
}

.faq-item[open] summary::after{
  transform: rotate(180deg);
  background: rgba(75,135,216,0.10);
  border-color: rgba(75,135,216,0.20);
}


.faq-item[open] summary{
  background: rgba(75,135,216,0.08);
  border-color: rgba(75,135,216,0.18);
}

.faq-item p{
  margin: 10px 10px 0;
  color: var(--muted);
  font-weight: 650;
}

/* responsive */
@media (max-width: 980px){
  .cta-strong .cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* FOOTER */

.footer-inner{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  align-items: center;
}

/* ----- COLONNE GAUCHE ----- */
.footer-left{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: 10px;
}


/* Footer social buttons */
.footer-social{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.social-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease, filter .15s ease;
}

.social-btn svg{
  width: 25px;
  height: 25px;
  fill: currentColor;
  opacity: .9;
}

.social-btn span{
  font-size: .95rem;
  opacity: .95;
}

/* HOVER = même signature que .btn-primary */
.social-btn:hover{
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 14px 34px rgba(46,95,168,0.20);
  filter: saturate(1.08);
}

.social-btn:hover svg,
.social-btn:hover span{
  opacity: 1;
}



/* ----- COLONNE DROITE ----- */
.footer-title{
  margin: 0 0 10px;
  font-weight: 950;
}

.footer-contact{
  display: grid;
  gap: 10px;
}

.footer-contact-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.70);
  color: rgba(15,23,42,0.75);
  text-decoration: none;
}

.footer-contact-row span:first-child{
  font-weight: 900;
}

.footer-contact-row:hover{
  border-color: rgba(75,135,216,0.25);
}
/* =========================
   FOOTER – HALO BLEU / VERT
   ========================= */

.site-footer.footer-pro{
  background:
    radial-gradient(900px 260px at 10% 0%, rgba(75,135,216,0.12), transparent 60%),
    radial-gradient(800px 260px at 90% 100%, rgba(111,209,58,0.10), transparent 55%),
    #f8fafc;
}


/* ----- FOOTER BOTTOM ----- */
.footer-bottom{
  margin-top: 14px;
  font-size: 14px;
  color: rgba(15,23,42,0.60);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 980px){
  .footer-inner{
    grid-template-columns: 1fr;
  }

  .footer-contact-row{
    flex-direction: column;
    align-items: flex-start;
  }
}



/* RESPONSIVE */
@media (max-width: 980px){
  .nav{ display:none; }
  .burger{ display:block; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media img{ height:340px; }
  .proof-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .news-grid{ grid-template-columns: 1fr; }
  .section-head.row{ align-items:flex-start; }
  .cta-inner{ flex-direction:column; align-items:flex-start; }
}

@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; }
}
@media (min-width: 981px){
  .header-inner{
    gap: 18px;
  }
}
@media (max-width: 980px){
  .hero-media--contain img{ height: 340px; }
}




/* ===== PRESENTATION PAGE ===== */
.page-hero{
  padding: 34px 0 18px;
}

.page-hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:14px;
  align-items:stretch;
}

.page-hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

.page-hero-card{
  border-radius: calc(var(--radius) + 10px);
  border:1px solid rgba(15,23,42,0.10);
  background:
    radial-gradient(900px 260px at 10% 0%, rgba(75,135,216,0.14), transparent 60%),
    radial-gradient(800px 260px at 90% 100%, rgba(111,209,58,0.12), transparent 55%),
    rgba(255,255,255,0.82);
  box-shadow: var(--shadow-soft);
  padding:18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.page-hero-card-title{
  margin:0 0 12px;
  font-weight:950;
  letter-spacing:-0.02em;
}
.ffvelo-panel{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.ffvelo-big{
  width: 160px;
  height: auto;
  object-fit: contain;
}

.social-stack{
  display:grid;
  gap: 10px;
}
/* Présentation – sections moins "fade" */
.cards-grid-2{
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 980px){
  .cards-grid-2{ grid-template-columns: 1fr; }
}

.card-feature{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 44px rgba(46,95,168,0.08);
}

.card-top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.card-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(75,135,216,0.10);
  border: 1px solid rgba(75,135,216,0.18);
  font-size: 20px;
}

.card-title{
  margin:0;
  font-weight: 950;
}
.card-subtitle{
  margin: 2px 0 0;
  opacity: .75;
  font-weight: 700;
  font-size: 14px;
}
.card-text{
  margin: 0;
  line-height: 1.65;
}

/* FFVélo bloc plus fort */
.split-ffvelo{
  align-items: center;
}

.ffvelo-panel-strong{
  background:
    radial-gradient(520px 180px at 15% 10%, rgba(75,135,216,0.12), transparent 60%),
    radial-gradient(520px 180px at 90% 100%, rgba(111,209,58,0.10), transparent 55%),
    rgba(255,255,255,.75);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 44px rgba(46,95,168,0.10);
  padding: 22px 18px;          
  border-radius: 22px;         
  min-height: 220px;          
  display: grid;               
  place-items: center;
}
.ffvelo-panel-strong img.ffvelo-big{
  width: 190px;                
  height: auto;
}

.split-ffvelo .ffvelo-panel{
  width: 100%;
}
.ffvelo-bullets{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 12px 0 18px;
}

.pill{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(75,135,216,0.10);
  border: 1px solid rgba(75,135,216,0.18);
  font-weight: 800;
  font-size: 14px;
}

/* story section */
.story-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:18px;
  align-items:center;
}
.story-media{
  border-radius: calc(var(--radius) + 10px);
  overflow:hidden;
  border:1px solid rgba(15,23,42,0.10);
  box-shadow: var(--shadow-soft);
  background:#fff;
}
.story-media img{
  width:100%;
  height:360px;
  object-fit: cover;
  object-position: center;
}
.story-copy h2{
  margin:0 0 10px;
  font-weight:950;
  letter-spacing:-0.03em;
}
.story-lead{
  margin:0 0 14px;
  color: var(--muted);
  font-weight:650;
  max-width: 70ch;
}
.story-points{
  display:grid;
  gap:10px;
}

/* how it works */
.how-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.how-card{
  background: rgba(255,255,255,0.82);
  border:1px solid rgba(15,23,42,0.10);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-soft);
  padding:16px;
}
.how-step{
  margin:0 0 10px;
  width:38px;
  height:38px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight:950;
  color:#fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 14px 30px rgba(46,95,168,0.18);
}
.how-card h3{
  margin:0 0 6px;
  font-weight:950;
  letter-spacing:-0.02em;
}
.how-card p{
  margin:0;
  color: var(--muted);
  font-weight:650;
}

/* safety block */
.safety .safety-inner{
  border-radius: calc(var(--radius) + 10px);
  border:1px solid rgba(15,23,42,0.10);
  background:
    radial-gradient(900px 240px at 15% 0%, rgba(75,135,216,0.16), transparent 60%),
    radial-gradient(800px 240px at 90% 100%, rgba(111,209,58,0.14), transparent 55%),
    rgba(255,255,255,0.84);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items:center;
}
.safety h2{
  margin:0 0 6px;
  font-weight:950;
  letter-spacing:-0.03em;
}
.safety p{
  margin:0;
  color: var(--muted);
  font-weight:650;
}

.safety-list{
  display:grid;
  gap:10px;
}
.safety-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 12px;
  border-radius: 16px;
  border:1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.75);
}
.safety-dot{
  width:10px;
  height:10px;
  border-radius:99px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 0 0 4px rgba(75,135,216,0.08);
}

/* responsive */
@media (max-width: 980px){
  .page-hero-grid{ grid-template-columns: 1fr; }
  .story-grid{ grid-template-columns: 1fr; }
  .story-media img{ height: 280px; }
  .how-grid{ grid-template-columns: 1fr; }
  .safety .safety-inner{ grid-template-columns: 1fr; }
}

/* =========================
   ACTUS PAGE
   ========================= */

.actus-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 980px){
  .actus-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .actus-grid{ grid-template-columns: 1fr; }
}

.actus-card{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.actus-card:hover{
  transform: translateY(-2px);
  border-color: rgba(75,135,216,.25);
  box-shadow: 0 14px 34px rgba(46,95,168,0.12);
}

.actus-card img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.actus-card-body{
  padding: 14px 14px 16px;
  display: grid;
  gap: 8px;
}

.actus-meta{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  opacity: .8;
}

.actus-title{
  font-weight: 950;
  margin: 0;
}

.actus-excerpt{
  margin: 0;
  opacity: .9;
}

.actus-detail{
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 18px;
}

.actus-detail h2{
  margin-top: 0;
}

.actus-detail-cover{
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 16px;
  margin: 12px 0 14px;
  display: block;
}
/* Galerie photos actus */
.actus-gallery{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 980px){
  .actus-gallery{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .actus-gallery{ grid-template-columns: 1fr; }
}

.actus-gallery-item{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.72);
  display: block;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.actus-gallery-item:hover{
  transform: translateY(-2px);
  border-color: rgba(75,135,216,.25);
  box-shadow: 0 14px 34px rgba(46,95,168,0.12);
}

.actus-gallery-item img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}


/* ===== CONTACT PAGE ===== */
.contact-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 980px){
  .contact-grid{ grid-template-columns: 1fr; }
}

.form .hidden{ display:none; }

.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 700px){
  .form-row{ grid-template-columns: 1fr; }
}

.form-label{
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.form-input{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.78);
  padding: 12px 12px;
  font: inherit;
  color: inherit;
  outline: none;
}

.form-input:focus{
  border-color: rgba(75,135,216,.35);
  box-shadow: 0 0 0 4px rgba(75,135,216,.12);
}

.form-textarea{
  resize: vertical;
  min-height: 150px;
}

.form-actions{
  margin-top: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.contact-panel{
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 44px rgba(46,95,168,0.08);
}


/* =========================
   REJOINDRE
   ========================= */

.join-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:18px;
  align-items:start;
}
@media (max-width: 980px){
  .join-grid{ grid-template-columns: 1fr; }
}

.join-card{ padding:18px; }

.downloads{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
@media (max-width: 700px){
  .downloads{ grid-template-columns: 1fr; }
}

.download-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius:18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.10);
  text-decoration:none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.download-item:hover{
  transform: translateY(-2px);
  border-color: rgba(75,135,216,.25);
  box-shadow: 0 14px 34px rgba(46,95,168,0.12);
}
.download-emoji{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(75,135,216,0.10);
  border: 1px solid rgba(75,135,216,0.18);
  font-size: 20px;
  flex: 0 0 auto;
}
.download-title{
  margin:0;
  font-weight:950;
}
.download-text{
  margin:2px 0 0;
  opacity:.75;
  font-weight:700;
  font-size:14px;
}

.join-side{
  padding:18px;
  border-radius:22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 44px rgba(46,95,168,0.08);
}

.divider{
  height:1px;
  margin:16px 0;
  background: rgba(15,23,42,0.10);
}

/* Tarifs (CMS) */
.tarifs-wrap{
  display:grid;
  gap:14px;
}

.tarif-card{
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 18px 44px rgba(46,95,168,0.08);
}

.tarif-title{
  margin: 0 0 10px;
  font-weight: 950;
}

.tarif-table-wrap{
  overflow:auto;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
}

.tarif-table{
  width:100%;
  border-collapse: collapse;
  min-width: 720px; /* scroll sur mobile */
  background: rgba(255,255,255,.80);
}

.tarif-table th,
.tarif-table td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(15,23,42,.08);
  text-align: left;
  font-weight: 700;
  color: rgba(15,23,42,.80);
}

.tarif-table th{
  font-weight: 950;
  background: rgba(75,135,216,0.08);
}

.join-plus{
  padding:16px;
  border-radius:22px;
  background:
    radial-gradient(520px 180px at 15% 10%, rgba(75,135,216,0.10), transparent 60%),
    radial-gradient(520px 180px at 90% 100%, rgba(111,209,58,0.08), transparent 55%),
    rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.10);
}
/* Petit plus du club – mise en valeur */
.join-plus-strong{
  background:
    radial-gradient(520px 180px at 10% 0%, rgba(75,135,216,0.18), transparent 60%),
    radial-gradient(520px 180px at 90% 100%, rgba(111,209,58,0.15), transparent 55%),
    rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 22px 54px rgba(46,95,168,0.14);
}

.join-plus-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.join-plus-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color:#fff;
  font-size:20px;
  flex:0 0 auto;
}

.join-plus-list{
  display:grid;
  gap:10px;
  font-weight:700;
}

.join-plus-note{
  margin-top:12px;
  font-weight:600;
}
/* =========================
   RANDO ANNUELLE
   ========================= */
.rando-detail{
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(520px 180px at 10% 0%, rgba(75,135,216,0.12), transparent 60%),
    radial-gradient(520px 180px at 90% 100%, rgba(111,209,58,0.10), transparent 55%),
    rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 44px rgba(46,95,168,0.08);
}

.rando-head{
  display:flex;
  gap:14px;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  margin-bottom: 14px;
}

.rando-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.rando-meta{
  opacity:.85;
  font-weight: 700;
}

.rando-intro{
  margin: 10px 0 0;
  opacity:.9;
  font-weight: 650;
}

.rando-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items:start;
}
@media (max-width: 980px){
  .rando-grid{ grid-template-columns: 1fr; }
}

.rando-text{
  margin: 0 0 10px;
  line-height: 1.65;
}

.rando-flyer{
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  display:block;
}

/* active sur nav-cta si besoin */
.nav-cta.is-active{
  outline: 3px solid rgba(75,135,216,0.14);
  outline-offset: 2px;
}

@media (max-width: 980px){
  .join-steps{ grid-template-columns: 1fr; }
  .join-grid{ grid-template-columns: 1fr; }
}

/* === FORCE LOGO FFVÉLO FOOTER (override final) === */
.site-footer .brand-inline-logo.footer-ffvelo{
  width: 150px !important;
  height: 150px !important;
  max-width: none !important;
  max-height: none !important;
  flex: 0 0 auto !important;
  object-fit: contain !important;
}
@media (max-width: 520px){
  .site-footer .brand-inline-logo.footer-ffvelo{
    width: 64px !important;
    height: 64px !important;
  }
}
