/* =====================================================================
   CFTC CASTORAMA ISÈRE — home.css
   Composants spécifiques à la page d'accueil (header, hero, ticker,
   chiffres, why-cards, carrousel propositions, actualités, magasins,
   témoignages, big-cta, newsletter, footer).
   Consomme les tokens de assets/cftc.css (et ses alias rétrocompatibles
   --bleu-cftc, --orange-casto, etc.) : une seule source de vérité pour
   les couleurs, ce fichier ne définit aucune couleur en dur.
   ===================================================================== */

  /* ===================== TOP UTILITY BAR ===================== */
  .util-bar {
    background: var(--bleu-marine);
    color: #CBDCEE;
    font-size: 0.82rem;
    padding: 7px 0;
  }
  .util-bar .container {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 8px;
  }
  .util-left { display: flex; gap: 18px; align-items: center; }
  .util-bar a { color: #CBDCEE; display: flex; align-items: center; gap: 6px; }
  .util-bar a:hover { color: white; }
  .util-badge {
    background: var(--orange-casto);
    color: white;
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 100px;
  }
  .util-social { display: flex; gap: 14px; }
  .util-social a {
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, transform 0.2s;
  }
  .util-social a:hover { background: var(--bleu-ciel); transform: translateY(-2px); }

  @media (max-width: 720px) {
    .util-bar .util-left span { display: none; }
  }

  /* ===================== HEADER ===================== */
  header {
    background: var(--blanc);
    border-bottom: 1px solid var(--bordure);
    position: sticky; top: 0; z-index: 100;
    transition: box-shadow 0.3s;
  }
  header.scrolled { box-shadow: 0 4px 20px rgba(0, 59, 113, 0.08); }

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

  /* Le composant .cftc-logo vit dans cftc.css (design system).
     Ici on ajuste seulement son gabarit pour le contexte header. */
  .header-inner .cftc-logo__mark { width: 56px; height: 45px; }
  .header-inner .cftc-logo__sigle { font-size: 1.7rem; }
  .logo-mark { object-fit: contain; }

  nav { display: flex; gap: 28px; align-items: center; }
  nav a {
    color: var(--ardoise); font-weight: 600; font-size: 0.95rem;
    padding: 8px 2px; position: relative;
  }
  nav a::after {
    content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
    height: 2px; background: var(--orange-casto);
    transition: right 0.25s ease;
  }
  nav a:hover::after, nav a:focus-visible::after { right: 0; }
  nav a:hover, nav a:focus-visible { color: var(--bleu-cftc); }

  .btn-adhesion {
    background: var(--bleu-cftc);
    color: #FFFFFF !important;
    padding: 12px 26px; border-radius: 6px;
    font-weight: 700; border: none; cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
    font-size: 0.95rem; position: relative; overflow: hidden;
  }
  .btn-adhesion::before {
    content: ''; position: absolute; inset: 0;
    background: var(--orange-casto);
    transform: translateX(-101%);
    transition: transform 0.3s ease; z-index: 0;
  }
  .btn-adhesion span { position: relative; z-index: 1; }
  .btn-adhesion:hover::before, .btn-adhesion:focus-visible::before { transform: translateX(0); }
  .btn-adhesion:hover, .btn-adhesion:focus-visible { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3); }

  .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .nav-toggle span {
    display: block; width: 26px; height: 3px;
    background: var(--bleu-cftc); margin: 5px 0; border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }

  /* ===================== HERO SLIDER ===================== */
  /* ===================== HERO SLIDER ===================== */
  .hero-slider {
    position: relative; height: 580px; overflow: hidden;
    background: var(--bleu-marine);
  }
  .slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 1.1s ease; display: flex; align-items: center;
  }
  .slide.active { opacity: 1; z-index: 2; }
  .slide-bg { position: absolute; inset: 0; z-index: 0; }

  .slide.s1 .slide-bg { background: linear-gradient(125deg, var(--bleu-marine) 0%, var(--bleu-fonce) 45%, var(--bleu-mosaique) 100%); }
  .slide.s2 .slide-bg { background: linear-gradient(125deg, #001A33 0%, var(--bleu-cftc) 50%, var(--orange-casto-fonce) 140%); }
  .slide.s3 .slide-bg { background: linear-gradient(125deg, var(--bleu-marine) 0%, var(--bleu-moyen) 55%, var(--bleu-ciel) 100%); }

  .slide-bg::after {
    content: ''; position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 85% 20%, rgba(255,255,255,0.10) 0, transparent 45%),
      radial-gradient(circle at 15% 85%, rgba(255,255,255,0.06) 0, transparent 40%);
  }

  .hero-dove {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    opacity: 0.14;
    z-index: 1;
    pointer-events: none;
  }
  @media (max-width: 980px) {
    .hero-dove { width: 360px; right: -120px; opacity: 0.1; }
  }

  .hero-waves { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 1; line-height: 0; }
  .hero-waves svg { width: 100%; height: 90px; display: block; }
  .wave-back { animation: waveDrift 18s ease-in-out infinite alternate; }
  .wave-front { animation: waveDrift 12s ease-in-out infinite alternate-reverse; }
  @keyframes waveDrift { from { transform: translateX(0); } to { transform: translateX(-60px); } }

  .slide-content {
    position: relative; z-index: 2; max-width: 640px; color: white;
    padding: 0 24px; margin: 0 auto; width: 100%;
  }

  .slide-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px; padding: 8px 18px;
    font-size: 0.85rem; font-weight: 700; margin-bottom: 24px;
    backdrop-filter: blur(4px);
    opacity: 0; transform: translateY(16px);
  }
  .slide-eyebrow .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--orange-casto);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,102,0,0.6); }
    50% { box-shadow: 0 0 0 6px rgba(255,102,0,0); }
  }

  .slide h2.slide-title {
    font-size: clamp(2.3rem, 5vw, 3.7rem);
    color: white; margin-bottom: 22px;
    opacity: 0; transform: translateY(24px);
  }
  .slide-title .accent { color: var(--orange-casto); font-style: italic; }

  .slide p.lead {
    font-size: 1.16rem; color: rgba(255,255,255,0.88);
    margin-bottom: 34px; max-width: 540px;
    opacity: 0; transform: translateY(24px);
  }

  .slide-ctas { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; transform: translateY(24px); }

  .slide.active .slide-eyebrow, .slide.active h2.slide-title,
  .slide.active p.lead, .slide.active .slide-ctas {
    opacity: 1; transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .slide.active .slide-eyebrow { transition-delay: 0.1s; }
  .slide.active h2.slide-title { transition-delay: 0.2s; }
  .slide.active p.lead { transition-delay: 0.32s; }
  .slide.active .slide-ctas { transition-delay: 0.44s; }

  .btn-primary {
    background: var(--orange-casto); color: white;
    padding: 16px 32px; border-radius: 6px; font-weight: 700; font-size: 1rem;
    display: inline-flex; align-items: center; gap: 10px;
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
    border: none; cursor: pointer;
  }
  .btn-primary:hover, .btn-primary:focus-visible {
    background: var(--orange-casto-fonce);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255,102,0,0.35);
  }

  .btn-secondary {
    background: transparent; color: white;
    padding: 16px 32px; border-radius: 6px; font-weight: 700; font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.5);
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-secondary:hover, .btn-secondary:focus-visible {
    background: rgba(255,255,255,0.12); border-color: white; transform: translateY(-2px);
  }

  .slider-nav { position: absolute; bottom: 110px; right: 40px; z-index: 3; display: flex; gap: 10px; }
  .slider-dot {
    width: 36px; height: 4px; background: rgba(255,255,255,0.3);
    border: none; border-radius: 2px; cursor: pointer;
    transition: background 0.3s; overflow: hidden; position: relative;
  }
  .slider-dot::after {
    content: ''; position: absolute; inset: 0; background: var(--orange-casto);
    transform: scaleX(0); transform-origin: left;
  }
  .slider-dot.active::after { animation: slideProgress 6s linear forwards; }
  @keyframes slideProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

  .slider-arrows { position: absolute; bottom: 36px; right: 40px; z-index: 3; display: flex; gap: 10px; }
  .slider-arrow {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.06); color: white;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s, transform 0.2s;
  }
  .slider-arrow:hover { background: rgba(255,255,255,0.18); transform: scale(1.06); }

  @media (max-width: 720px) {
    .hero-slider { height: 640px; }
    .slider-nav, .slider-arrows { right: 24px; }
    .slider-arrows { bottom: 24px; }
    .slider-nav { bottom: 80px; }
  }

  /* ===================== TICKER ===================== */
  .ticker-wrap {
    background: var(--orange-casto);
    overflow: hidden; white-space: nowrap; position: relative; padding: 13px 0;
  }
  .ticker { display: inline-flex; animation: tickerScroll 38s linear infinite; will-change: transform; }
  .ticker:hover { animation-play-state: paused; }
  .ticker.is-paused { animation-play-state: paused; }
  @keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .ticker-item {
    display: inline-flex; align-items: center; gap: 12px; color: white;
    font-weight: 700; font-size: 0.92rem; padding: 0 36px;
    border-right: 1px solid rgba(255,255,255,0.3);
  }
  .ticker-item .tag {
    background: rgba(0,0,0,0.18); border-radius: 100px; padding: 3px 12px;
    font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  }
  /* Bouton pause du ticker (WCAG 2.2.2 — contrôle du contenu en mouvement) */
  .ticker-pause {
    position: absolute; top: 50%; right: 12px; transform: translateY(-50%);
    z-index: 3; width: 30px; height: 30px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.6); background: rgba(0,0,0,0.15);
    color: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .ticker-pause:hover { background: rgba(0,0,0,0.3); }

  /* ===================== SECTIONS GENERAL ===================== */
  section { padding: 90px 0; }
  .section-head { max-width: 700px; margin-bottom: 50px; }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .section-head .tag {
    display: inline-block; color: var(--bleu-mosaique); font-weight: 800;
    font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 14px; padding-left: 28px; position: relative;
  }
  .section-head .tag::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 20px; height: 2px; background: var(--orange-casto);
  }
  .section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 14px; }
  .section-head p { color: var(--ardoise-clair); font-size: 1.08rem; }
  .section-alt { background: var(--bleu-clair); }

  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
  .reveal-stagger > * {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
  .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
  .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
  .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
  .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }

  /* ===================== CHIFFRES CLES ===================== */
  .chiffres { background: var(--bleu-cftc); position: relative; overflow: hidden; }
  .chiffres::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,102,0,0.14), transparent 70%);
  }
  .chiffres-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
    position: relative; z-index: 1;
  }
  .chiffre-item { text-align: center; color: white; }
  .chiffre-num {
    font-family: 'Fraunces', serif; font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 700; color: var(--orange-casto); display: block; line-height: 1; margin-bottom: 10px;
  }
  .chiffre-label { font-size: 0.95rem; color: rgba(255,255,255,0.85); font-weight: 600; }
  @media (max-width: 800px) { .chiffres-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; } }

  /* ===================== POURQUOI NOUS REJOINDRE ===================== */
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .why-card {
    border-radius: var(--radius); overflow: hidden; position: relative;
    aspect-ratio: 4/5; color: white; display: flex; align-items: flex-end;
    padding: 28px; isolation: isolate;
  }
  .why-card::before {
    content: ''; position: absolute; inset: 0; z-index: -2; transition: transform 0.5s ease;
  }
  .why-card:hover::before { transform: scale(1.08); }
  .why-card.c1::before { background: linear-gradient(160deg, var(--bleu-mosaique) 0%, var(--bleu-marine) 100%); }
  .why-card.c2::before { background: linear-gradient(160deg, var(--orange-casto) 0%, var(--orange-casto-fonce) 100%); }
  .why-card.c3::before { background: linear-gradient(160deg, var(--bleu-ciel) 0%, var(--bleu-mosaique) 100%); }
  .why-card::after {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 60%);
  }
  .why-content { position: relative; z-index: 1; transition: transform 0.3s ease; }
  .why-card:hover .why-content { transform: translateY(-6px); }
  .why-content h3 { color: white; font-size: 1.32rem; margin-bottom: 8px; }
  .why-content p { font-size: 0.93rem; opacity: 0.92; }
  .why-icon { position: absolute; top: 26px; right: 26px; z-index: 1; opacity: 0.55; transition: transform 0.4s ease; }
  .why-card:hover .why-icon { transform: rotate(12deg) scale(1.1); }

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

  /* ===================== PROPOSITIONS CAROUSEL ===================== */
  .props-carousel { position: relative; }
  .props-track {
    display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 12px; scrollbar-width: thin;
    scrollbar-color: var(--bleu-mosaique) var(--bleu-pale);
  }
  .props-track::-webkit-scrollbar { height: 6px; }
  .props-track::-webkit-scrollbar-thumb { background: var(--bleu-mosaique); border-radius: 4px; }
  .props-track::-webkit-scrollbar-track { background: var(--bleu-pale); border-radius: 4px; }

  .prop-card {
    flex: 0 0 280px; scroll-snap-align: start; background: white;
    border: 1px solid var(--bordure); border-radius: var(--radius); padding: 28px 24px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .prop-card:hover {
    border-color: var(--orange-casto);
    box-shadow: 0 14px 30px rgba(0, 59, 113, 0.1);
    transform: translateY(-4px);
  }
  .prop-card .icon-wrap {
    width: 52px; height: 52px; border-radius: 12px; background: var(--bleu-clair);
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
    transition: background 0.2s;
  }
  .prop-card:hover .icon-wrap { background: var(--bleu-cftc); }
  .prop-card:hover .icon-wrap svg path, .prop-card:hover .icon-wrap svg circle, .prop-card:hover .icon-wrap svg rect { stroke: white; }
  .prop-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
  .prop-card p { font-size: 0.92rem; color: var(--ardoise-clair); }

  .carousel-controls { display: flex; justify-content: flex-end; gap: 10px; margin-bottom: 24px; }
  .carousel-btn {
    width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--bordure);
    background: white; color: var(--bleu-cftc);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
  }
  .carousel-btn:hover { background: var(--bleu-cftc); color: white; border-color: var(--bleu-cftc); transform: scale(1.05); }

  /* ===================== ACTUALITES ===================== */
  .news-grid {
    display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: repeat(2, auto); gap: 22px;
  }
  .news-card {
    background: white; border: 1px solid var(--bordure); border-radius: var(--radius);
    overflow: hidden; transition: box-shadow 0.25s, transform 0.25s;
    display: flex; flex-direction: column;
  }
  .news-card:hover { box-shadow: 0 16px 34px rgba(0, 59, 113, 0.1); transform: translateY(-4px); }
  .news-card.featured { grid-row: span 2; }

  .news-thumb {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--bleu-cftc), var(--bleu-mosaique));
    display: flex; align-items: center; justify-content: center;
  }
  .news-card.featured .news-thumb { height: 240px; }
  .news-card:not(.featured) .news-thumb { height: 120px; }
  .news-thumb svg { transition: transform 0.4s ease; }
  .news-card:hover .news-thumb svg { transform: scale(1.15) rotate(-4deg); }

  .news-category {
    position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.92);
    color: var(--bleu-cftc); font-size: 0.72rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.05em; padding: 5px 12px; border-radius: 100px;
  }
  .news-category.casto { background: var(--orange-casto); color: white; }

  .news-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
  .news-date {
    font-size: 0.78rem; color: var(--bleu-mosaique); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px;
  }
  .news-card.featured h3 { font-size: 1.32rem; }
  .news-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
  .news-body p { font-size: 0.92rem; color: var(--ardoise-clair); margin-bottom: 14px; flex: 1; }
  .news-link {
    font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
  }
  .news-card:hover .news-link { gap: 10px; }

  @media (max-width: 980px) {
    .news-grid { grid-template-columns: 1fr 1fr; }
    .news-card.featured { grid-column: span 2; grid-row: span 1; }
  }
  @media (max-width: 640px) {
    .news-grid { grid-template-columns: 1fr; }
    .news-card.featured { grid-column: span 1; }
  }

  /* ===================== CARTE MAGASINS ISERE ===================== */
  .magasins-block {
    background: linear-gradient(135deg, var(--bleu-cftc) 0%, var(--bleu-marine) 100%);
    border-radius: 24px; padding: 56px; color: white; position: relative; overflow: hidden;
  }
  .magasins-block::before {
    content: ''; position: absolute; bottom: -100px; left: -100px;
    width: 320px; height: 320px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,102,0,0.16), transparent 70%);
  }
  .magasins-block h2 { color: white; font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 16px; }
  .magasins-block .container-inner p { color: rgba(255,255,255,0.85); font-size: 1.02rem; margin-bottom: 32px; max-width: 560px; }

  .magasins-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; z-index: 1;
  }
  .magasin-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; padding: 22px;
    transition: background 0.2s, transform 0.2s;
  }
  .magasin-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
  .magasin-card .pin {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--orange-casto);
    display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  }
  .magasin-card h4 { color: white; font-size: 1.02rem; margin-bottom: 6px; font-family: 'Inter', sans-serif; font-weight: 700; }
  .magasin-card p { color: rgba(255,255,255,0.7); font-size: 0.86rem; }

  @media (max-width: 980px) { .magasins-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .magasins-grid { grid-template-columns: 1fr; } }
  @media (max-width: 900px) { .magasins-block { padding: 36px; } }

  /* ===================== TEMOIGNAGES SLIDER ===================== */
  .temoignages-wrap { position: relative; }
  .temoignages-track {
    display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; padding-bottom: 4px;
  }
  .temoignages-track::-webkit-scrollbar { display: none; }
  .temoignage-card {
    flex: 0 0 100%; scroll-snap-align: start;
    background: var(--bleu-clair); border-radius: 24px; padding: 50px;
    display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center;
  }
  .temoignage-icon {
    width: 84px; height: 84px; border-radius: 50%; background: var(--bleu-cftc);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .temoignage-card blockquote {
    font-family: 'Fraunces', serif; font-size: 1.42rem; font-weight: 500; line-height: 1.45;
    color: var(--bleu-cftc); margin-bottom: 14px;
  }
  .temoignage-card cite { font-style: normal; font-weight: 700; color: var(--orange-casto-fonce); font-size: 0.93rem; }

  .temoignages-nav { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
  .temoignage-dot {
    width: 10px; height: 10px; border-radius: 50%; border: none;
    background: var(--bordure); cursor: pointer; transition: background 0.2s, transform 0.2s;
  }
  .temoignage-dot.active { background: var(--orange-casto); transform: scale(1.2); }

  @media (max-width: 720px) {
    .temoignage-card { grid-template-columns: 1fr; padding: 32px; text-align: center; }
    .temoignage-icon { margin: 0 auto; }
  }

  /* ===================== APPEL ADHESION (BIG CTA) ===================== */
  .big-cta {
    background: linear-gradient(125deg, var(--orange-casto) 0%, var(--orange-casto-fonce) 100%);
    border-radius: 24px; padding: 64px; text-align: center; color: white;
    position: relative; overflow: hidden;
  }
  .big-cta::before, .big-cta::after {
    content: ''; position: absolute; border-radius: 50%;
    background: rgba(255,255,255,0.08);
  }
  .big-cta::before { width: 280px; height: 280px; top: -120px; right: -80px; }
  .big-cta::after { width: 200px; height: 200px; bottom: -100px; left: -60px; }

  .big-cta-icon {
    width: 90px; height: 90px; margin: 0 auto 24px;
    border-radius: 50%; background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
  }
  .big-cta h2 { color: white; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; position: relative; z-index: 1; }
  .big-cta p {
    color: rgba(255,255,255,0.92); font-size: 1.1rem; max-width: 600px;
    margin: 0 auto 36px; position: relative; z-index: 1;
  }
  .big-cta .ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
  .big-cta .btn-primary { background: white; color: var(--orange-casto-fonce); }
  .big-cta .btn-primary:hover { background: var(--bleu-clair); color: var(--bleu-cftc); }
  .big-cta .btn-secondary { border-color: rgba(255,255,255,0.6); }

  @media (max-width: 720px) { .big-cta { padding: 40px 28px; } }

  /* ===================== NEWSLETTER ===================== */
  .newsletter-block {
    background: var(--bleu-mosaique); border-radius: 24px; padding: 50px 56px;
    display: flex; justify-content: space-between; align-items: center; gap: 32px;
    flex-wrap: wrap; color: white; position: relative; overflow: hidden;
  }
  .newsletter-block::after {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,0.08);
  }
  .newsletter-text h2 { color: white; font-size: 1.7rem; margin-bottom: 8px; }
  .newsletter-text p { color: rgba(255,255,255,0.85); font-size: 0.96rem; }
  .newsletter-form { display: flex; gap: 10px; position: relative; z-index: 1; }
  .newsletter-form input {
    border: none; border-radius: 6px; padding: 14px 18px; font-size: 0.95rem;
    font-family: inherit; width: 260px;
  }
  .newsletter-form input:focus { outline: 3px solid var(--orange-casto); }
  .newsletter-form button {
    background: var(--bleu-marine); color: white; border: none; border-radius: 6px;
    padding: 14px 26px; font-weight: 700; font-family: inherit; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .newsletter-form button:hover { background: var(--orange-casto); transform: translateY(-2px); }

  @media (max-width: 800px) {
    .newsletter-block { flex-direction: column; text-align: center; padding: 36px 28px; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .newsletter-form input { width: 100%; }
  }

  /* ===================== FOOTER ===================== */
  footer { background: var(--bleu-marine); color: #B9CCE0; }
  .footer-top { padding: 70px 0 40px; }
  .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; }
  .footer-grid h4 {
    color: white; font-size: 0.92rem; margin-bottom: 18px; font-family: 'Inter', sans-serif;
    font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  }
  .footer-grid ul { list-style: none; }
  .footer-grid li { margin-bottom: 11px; font-size: 0.9rem; }
  .footer-grid a { color: #B9CCE0; transition: color 0.2s, padding-left 0.2s; display: inline-block; }
  .footer-grid a:hover { color: var(--orange-casto); padding-left: 4px; }

  .footer-brand .cftc-logo { margin-bottom: 18px; }
  .footer-brand p { font-size: 0.9rem; color: #93AAC4; max-width: 320px; margin-top: 14px; }

  .footer-social { display: flex; gap: 10px; margin-top: 20px; }
  .footer-social a {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, transform 0.2s;
  }
  .footer-social a:hover { background: var(--orange-casto); transform: translateY(-3px); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: 0.85rem; color: #93AAC4;
  }
  .footer-bottom a { color: #93AAC4; }
  .footer-bottom a:hover { color: var(--orange-casto); }
  .footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }

  @media (max-width: 980px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: span 3; }
  }
  @media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
  }

  @media (max-width: 720px) {
    nav { display: none; }
    .nav-toggle { display: block; }
    .btn-adhesion-header { display: none; }
    section { padding: 60px 0; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, .ticker, .slide-eyebrow, .slide h2, .slide p, .slide-ctas {
      animation: none !important; transition: none !important;
    }
    .slide { opacity: 1 !important; }
    .slide:not(.active) { display: none; }
  }

  /* ===================== CHIFFRE STATIQUE (sans compteur JS) ===================== */
  .chiffre-fixed {
    font-family: 'Fraunces', serif; font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 700; color: var(--orange-casto); display: block; line-height: 1; margin-bottom: 10px;
  }

  /* ===================== CARTE MAGASIN EN VEDETTE ===================== */
  .magasin-card.is-featured {
    background: rgba(255, 102, 0, 0.18);
    border-color: rgba(255, 102, 0, 0.45);
  }
  .magasin-card.is-featured .pin { background: rgba(255,255,255,0.9); }
  .magasin-card.is-featured .pin svg path { stroke: var(--orange-casto); }
  .local-tag {
    background: var(--orange-casto); color: white;
    font-size: 0.62rem; padding: 2px 8px; border-radius: 100px;
    vertical-align: middle; font-family: 'Inter', sans-serif;
    font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin-left: 8px;
  }

  /* ===================== FAQ SECTION ===================== */
  .faq-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
  }
  .faq-card {
    background: white; border: 1px solid var(--bordure); border-radius: var(--radius);
    padding: 32px 30px; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .faq-card:hover {
    border-color: var(--bleu-mosaique); box-shadow: var(--shadow-md); transform: translateY(-3px);
  }
  .faq-q {
    font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.06rem;
    color: var(--bleu-cftc); margin-bottom: 12px;
  }
  .faq-card p { font-size: 0.94rem; color: var(--ardoise-clair); line-height: 1.65; }
  .faq-card p strong { color: var(--orange-casto-fonce); font-weight: 700; }

  @media (max-width: 720px) { .faq-grid { grid-template-columns: 1fr; } }

  /* ===================== BADGE COÛT DANS LE BIG CTA ===================== */
  .cost-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35);
    border-radius: 100px; padding: 10px 24px;
    font-size: 0.92rem; color: white;
    margin-bottom: 28px; position: relative; z-index: 1;
  }
  .cost-badge strong { font-size: 1rem; font-weight: 800; }

  /* ===================== LOGO WATERMARK HERO ===================== */
  .hero-logo-bg {
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    max-width: 36vw;
    pointer-events: none;
    z-index: 0;
  }
  .hero-logo-bg img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.18;
  }
  @media (max-width: 768px) {
    .hero-logo-bg { width: 150px; max-width: 40vw; left: 2%; }
    .hero-logo-bg img { opacity: 0.10; }
  }

  /* ===================== ACTUALITES ===================== */
  .actu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .actu-card {
    background: white;
    border: 1px solid var(--bordure);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  }
  .actu-card:hover {
    border-color: var(--bleu-mosaique);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }
  .actu-thumb {
    background: var(--bleu-cftc);
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .actu-thumb img {
    width: 55%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.15;
  }
  /* Cartes avec vraie photo : affichage plein cadre, couleurs naturelles */
  .actu-thumb--photo {
    background: #1a2a3a;
  }
  .actu-thumb--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    opacity: 1;
  }
  .actu-body {
    padding: 22px 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .actu-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  .actu-cat {
    background: rgba(0,59,113,0.08);
    color: var(--bleu-cftc);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
  }
  .actu-date {
    font-size: 0.78rem;
    color: var(--ardoise-clair);
    font-family: 'Inter', sans-serif;
  }
  .actu-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bleu-cftc);
    margin-bottom: 10px;
    line-height: 1.45;
  }
  .actu-card p {
    font-size: 0.87rem;
    color: var(--ardoise-clair);
    line-height: 1.6;
    flex: 1;
    margin: 0;
  }
  .actu-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--bleu-cftc);
    font-size: 0.83rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin-top: 16px;
    text-decoration: none;
  }
  .actu-link:hover { text-decoration: underline; }
  @media (max-width: 920px) { .actu-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 580px) { .actu-grid { grid-template-columns: 1fr; } }

  /* ===================== FOOTER INFOS LÉGALES ===================== */
  .footer-legal-info {
    font-size: 0.76rem;
    color: #6B87A4;
    margin-top: 10px;
    line-height: 1.7;
  }
