/* ============================================================
   BFMTV Landing Page — Acquisition investisseurs franchisés
   ============================================================ */

.bfmtv-page {
    overflow-x: hidden;
}

/* Titres en minuscules (override du uppercase global de _base.css) */
.bfmtv-page h1,
.bfmtv-page h2,
.bfmtv-page h3,
.bfmtv-page h4 {
    text-transform: none;
}

.bfmtv-page section {
    padding: 60px 0;
}

.bfmtv-page .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bfmtv-page h2 {
    text-align: center;
    text-wrap: balance;
    margin-bottom: 20px;
    font-size: 1.75rem;
    line-height: 1.2;
}

.bfmtv-page h2 span {
    background: linear-gradient(90deg, var(--orange), var(--pink));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline;
}

.bfmtv-page .intro {
    text-align: center;
    text-wrap: pretty;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--grey);
    line-height: 1.6;
}

.bfmtv-page .cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.bfmtv-page .white-card {
    background: var(--white);
    box-shadow: var(--medium-shadow);
    border-radius: var(--medium-radius);
    padding: 25px;
}


/* ============================================================
   REVEAL ANIMATIONS (section-level only)
   ============================================================ */
.bfmtv-page [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.bfmtv-page [data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .bfmtv-page [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ============================================================
   1. HERO
   ============================================================ */
.bfmtv-page #heroSection {
    background: linear-gradient(135deg, #ffe4e6, #ffedd5);
    text-align: center;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.bfmtv-page #heroSection::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(218, 25, 132, 0.12), transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.bfmtv-page #heroSection::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 126, 4, 0.15), transparent 70%);
    bottom: -80px;
    left: -80px;
    border-radius: 50%;
    pointer-events: none;
}

.bfmtv-page #heroSection .section-container {
    position: relative;
    z-index: 1;
}

.bfmtv-page #heroSection .tag {
    background: linear-gradient(90deg, var(--orange), var(--pink));
    font-size: .75rem;
    border-radius: var(--hight-radius);
    padding: 10px 20px;
    color: var(--white);
    font-weight: 600;
    width: max-content;
    margin: 0 auto 25px auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    text-transform: none;
    box-shadow: 0 4px 12px rgba(218, 25, 132, 0.25);
}

.bfmtv-page #heroSection h1 {
    text-wrap: balance;
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.bfmtv-page #heroSection h1 span {
    background: linear-gradient(90deg, var(--orange), var(--pink));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline;
}

.bfmtv-page #heroSection .intro {
    margin-bottom: 30px;
    color: #111;
}

.bfmtv-page #heroSection .btns-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.bfmtv-page #heroSection .btns-container a {
    border-radius: var(--low-radius);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bfmtv-page #heroSection .btns-container a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(218, 25, 132, 0.3);
}


/* ============================================================
   2. OPPORTUNITÉ — stats cards
   ============================================================ */
.bfmtv-page #opportunity {
    background: linear-gradient(180deg, #ffffff, #fafafa);
}

.bfmtv-page .stat-card {
    text-align: center;
    background: linear-gradient(135deg, #fff7ed, #fff1f2);
    border: 1px solid rgba(218, 25, 132, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}

.bfmtv-page .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(218, 25, 132, 0.12);
    border-color: rgba(218, 25, 132, 0.2);
}

.bfmtv-page .stat-card--headline {
    background: linear-gradient(135deg, #fff7ed, #ffe4e6);
    border-color: rgba(218, 25, 132, 0.18);
}

.bfmtv-page .stat-card--headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    border-radius: 3px;
}

.bfmtv-page .stat-card .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-variant-numeric: tabular-nums;
}

.bfmtv-page .stat-card h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.bfmtv-page .stat-card p {
    color: var(--grey);
    font-size: .9rem;
    line-height: 1.5;
}


/* ============================================================
   3. POURQUOI SMARTDUCK — pillars
   ============================================================ */
.bfmtv-page #why-smartduck {
    background: var(--white);
}

.bfmtv-page .pillar-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid transparent;
}

.bfmtv-page .pillar-card:hover {
    transform: translateY(-3px);
    border-color: rgba(218, 25, 132, 0.15);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.bfmtv-page .pillar-card .icon {
    background: linear-gradient(90deg, var(--orange), var(--pink));
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: var(--low-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 14px rgba(218, 25, 132, 0.25);
}

.bfmtv-page .pillar-card h3 {
    font-size: 1.2rem;
}

.bfmtv-page .pillar-card p {
    color: var(--grey);
    line-height: 1.6;
}


/* ============================================================
   4. INVESTISSEMENT — snapshot + table
   ============================================================ */
.bfmtv-page #investment {
    background: linear-gradient(180deg, #fafafa, #ffffff);
}

.bfmtv-page .invest-snapshot {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto 30px;
}

.bfmtv-page .snapshot-card {
    background: var(--white);
    border-radius: var(--medium-radius);
    padding: 18px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(218, 25, 132, 0.1);
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.bfmtv-page .snapshot-card:hover {
    transform: translateY(-2px);
    border-color: rgba(218, 25, 132, 0.25);
}

.bfmtv-page .snapshot-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    color: var(--grey);
    margin-bottom: 6px;
    font-weight: 500;
}

.bfmtv-page .snapshot-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-variant-numeric: tabular-nums;
}

.bfmtv-page .invest-table-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--medium-radius);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.bfmtv-page .invest-table {
    width: 100%;
    border-collapse: collapse;
}

.bfmtv-page .invest-table tr {
    border-bottom: 1px solid #f1f1f1;
    transition: background 0.15s ease;
}

.bfmtv-page .invest-table tr:last-child {
    border-bottom: none;
}

.bfmtv-page .invest-table tr:nth-child(even) {
    background: #fafafa;
}

.bfmtv-page .invest-table tr:hover {
    background: #fff7ed;
}

.bfmtv-page .invest-table th,
.bfmtv-page .invest-table td {
    padding: 16px 20px;
    text-align: left;
    font-size: 0.95rem;
}

.bfmtv-page .invest-table th {
    font-weight: 500;
    color: #333;
    width: 60%;
}

.bfmtv-page .invest-table td {
    font-weight: 700;
    color: var(--orange);
    text-align: right;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.bfmtv-page .invest-note {
    text-align: center;
    margin-top: 25px;
    font-size: 0.95rem;
    color: var(--grey);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bfmtv-page .invest-note i {
    color: var(--pink);
    font-size: 1.2rem;
}


/* ============================================================
   5. ACCOMPAGNEMENT
   ============================================================ */
.bfmtv-page #support {
    background: linear-gradient(135deg, #eff6ff, #fdf2f8);
}

.bfmtv-page .support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.bfmtv-page .support-block {
    background: var(--white);
    padding: 25px;
    border-radius: var(--medium-radius);
    box-shadow: var(--medium-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bfmtv-page .support-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.bfmtv-page .support-block h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 1.15rem;
}

.bfmtv-page .support-block h3 i {
    color: var(--pink);
    font-size: 1.3rem;
}

.bfmtv-page .support-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bfmtv-page .support-block li {
    padding-left: 26px;
    position: relative;
    color: var(--grey);
    line-height: 1.5;
}

.bfmtv-page .support-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center / contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") center / contain no-repeat;
}


/* ============================================================
   6. PRESS — chips enrichies + quote
   ============================================================ */
.bfmtv-page #press {
    background: var(--white);
    text-align: center;
}

.bfmtv-page .press-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.bfmtv-page .press-list li a {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
    background: linear-gradient(135deg, #fff7ed, #fff1f2);
    border: 1px solid rgba(218, 25, 132, 0.15);
    border-radius: var(--medium-radius);
    color: #333;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: left;
    min-width: 180px;
}

.bfmtv-page .press-list li a:hover {
    background: linear-gradient(90deg, var(--orange), var(--pink));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(218, 25, 132, 0.2);
}

.bfmtv-page .press-list .press-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.bfmtv-page .press-list .press-meta {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 2px;
}

.bfmtv-page .press-quote {
    background: linear-gradient(135deg, #fff7ed, #fff1f2);
    border-left: 4px solid var(--pink);
    padding: 28px;
    border-radius: var(--medium-radius);
    margin: 0 auto;
    max-width: 800px;
    text-align: left;
    position: relative;
}

.bfmtv-page .press-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 18px;
    font-size: 5rem;
    line-height: 1;
    color: rgba(218, 25, 132, 0.15);
    font-family: Georgia, serif;
    pointer-events: none;
}

.bfmtv-page .press-quote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #111;
    position: relative;
    z-index: 1;
}

.bfmtv-page .press-quote cite {
    font-style: normal;
    font-weight: 600;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 0.95rem;
}


/* ============================================================
   7. TESTIMONIALS — scroll-snap mobile, grid desktop
   ============================================================ */
.bfmtv-page #testimonials {
    background: linear-gradient(180deg, #fafafa, #ffffff);
}

.bfmtv-page .testimonials-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 20px 20px;
    margin: 0 -20px;
    scrollbar-width: none;
}

.bfmtv-page .testimonials-track::-webkit-scrollbar {
    display: none;
}

.bfmtv-page .testimonial-card {
    text-align: center;
    flex: 0 0 85%;
    scroll-snap-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bfmtv-page .testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.bfmtv-page .testimonial-card .avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.bfmtv-page .testimonial-card h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.bfmtv-page .testimonial-card .role {
    display: block;
    font-size: 0.85rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 12px;
}

.bfmtv-page .testimonial-card p {
    color: var(--grey);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* --- Lecteur vidéo témoignage (charte smartduck) --- */
.bfmtv-page .testimonial-card--video {
    text-align: left;
}

.bfmtv-page .testimonial-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--medium-radius);
    overflow: hidden;
    margin-bottom: 16px;
    background: #000;
    box-shadow: 0 8px 24px rgba(218, 25, 132, 0.18);
}

.bfmtv-page .testimonial-video__el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Voile dégradé charte léger par-dessus le poster (on garde les visages visibles),
   renforcé en bas pour le contraste du bouton, masqué une fois lancé */
.bfmtv-page .testimonial-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.28) 100%),
        linear-gradient(135deg, rgba(255, 126, 4, 0.12), rgba(218, 25, 132, 0.16));
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.bfmtv-page .testimonial-video.is-playing::before {
    opacity: 0;
}

/* Bouton play central */
.bfmtv-page .testimonial-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--white);
    color: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
    padding-left: 4px; /* recentrage optique du triangle play */
}

.bfmtv-page .testimonial-video__play::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: var(--primary-gradient);
    z-index: -1;
    opacity: 0.55;
    animation: bfmtv-pulse 2.4s ease-out infinite;
}

@keyframes bfmtv-pulse {
    0% { transform: scale(1); opacity: 0.55; }
    70% { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

.bfmtv-page .testimonial-video__play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 8px 26px rgba(218, 25, 132, 0.4);
}

/* Une fois la lecture lancée : on masque play + voile, on rend les contrôles natifs */
.bfmtv-page .testimonial-video.is-playing .testimonial-video__play {
    opacity: 0;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .bfmtv-page .testimonial-video__play::after {
        animation: none;
    }
}


/* ============================================================
   8. CONTACT FORM — wrapper transparent, pas d'overflow:hidden
   ============================================================ */
.bfmtv-page #contact {
    background: linear-gradient(135deg, #ffe4e6, #ffedd5);
}

.bfmtv-page #contact #formContainer {
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
}

.bfmtv-page #contact iframe {
    width: 100%;
    display: block;
    border: 0;
    background: var(--white);
    border-radius: var(--medium-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* ============================================================
   9. FAQ — interpolate-size pour smooth open
   ============================================================ */
.bfmtv-page #faq {
    background: var(--white);
}

.bfmtv-page .faq-list {
    max-width: 800px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bfmtv-page .faq-list details {
    background: #fafafa;
    border-radius: var(--medium-radius);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: background 0.2s ease, border-color 0.2s ease;
    interpolate-size: allow-keywords;
}

.bfmtv-page .faq-list details[open] {
    background: linear-gradient(135deg, #fff7ed, #fff1f2);
    border-color: rgba(218, 25, 132, 0.18);
}

.bfmtv-page .faq-list summary {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-right: 50px;
    color: #111;
    font-size: 0.98rem;
    line-height: 1.4;
    transition: color 0.15s ease;
}

.bfmtv-page .faq-list summary::-webkit-details-marker {
    display: none;
}

.bfmtv-page .faq-list summary:hover {
    color: var(--pink);
}

.bfmtv-page .faq-list summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--orange);
    transition: transform 0.25s ease;
    line-height: 1;
    width: 22px;
    height: 22px;
    text-align: center;
}

.bfmtv-page .faq-list details[open] summary::after {
    content: '−';
    color: var(--pink);
}

.bfmtv-page .faq-list .faq-content {
    overflow: hidden;
}

.bfmtv-page .faq-list .faq-content p {
    padding: 0 20px 20px;
    color: var(--grey);
    line-height: 1.6;
    margin: 0;
}


/* ============================================================
   STICKY CTA (bottom-bar mobile, pill desktop)
   ============================================================ */
.sticky-cta {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 9998;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    color: var(--white);
    text-decoration: none;
    padding: 14px 20px;
    border-radius: var(--hight-radius);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(218, 25, 132, 0.35);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(218, 25, 132, 0.45);
}

.sticky-cta i {
    font-size: 1.1rem;
}

@media (prefers-reduced-motion: reduce) {
    .sticky-cta {
        transition: opacity 0.2s ease;
        transform: none;
    }
    .sticky-cta.is-visible {
        transform: none;
    }
}


/* ============================================================
   10. FOOTER DÉDIÉ BFMTV
   ============================================================ */
#bfmtvFooter {
    background: #1a1a1a;
    color: var(--white);
    padding: 40px 0;
}

#bfmtvFooter .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

#bfmtvFooter .footer-brand .signature {
    font-size: 1.05rem;
    line-height: 1.5;
}

#bfmtvFooter .footer-brand strong {
    background: linear-gradient(90deg, var(--orange), var(--pink));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 800;
}

#bfmtvFooter .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

#bfmtvFooter .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

#bfmtvFooter .footer-links a:hover {
    color: var(--orange);
}

#bfmtvFooter .footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

#bfmtvFooter .footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

#bfmtvFooter .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.2s;
}

#bfmtvFooter .footer-social a:hover {
    background: linear-gradient(90deg, var(--orange), var(--pink));
    transform: translateY(-2px);
}

#bfmtvFooter .footer-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

#bfmtvFooter .footer-contact .label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

#bfmtvFooter .footer-contact a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

#bfmtvFooter .footer-contact a:hover {
    color: var(--orange);
}

/* Padding bas pour ne pas masquer le footer avec la sticky CTA mobile */
@media screen and (max-width: 1023px) {
    #bfmtvFooter {
        padding-bottom: 90px;
    }
}


/* ============================================================
   TABLET 768px+
   ============================================================ */
@media screen and (min-width: 768px) {
    .bfmtv-page section {
        padding: 80px 0;
    }

    .bfmtv-page h2 {
        font-size: 2.25rem;
        margin-bottom: 25px;
    }

    .bfmtv-page #heroSection {
        padding: 100px 0 80px;
    }

    .bfmtv-page #heroSection h1 {
        font-size: 2.75rem;
    }

    .bfmtv-page .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .bfmtv-page #opportunity .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* La card headline occupe toute la largeur, les 2 autres se partagent la 2e ligne */
    .bfmtv-page #opportunity .stat-card--headline {
        grid-column: 1 / -1;
    }

    .bfmtv-page .invest-snapshot {
        grid-template-columns: repeat(3, 1fr);
    }

    .bfmtv-page .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bfmtv-page .invest-table th,
    .bfmtv-page .invest-table td {
        padding: 18px 25px;
        font-size: 1rem;
    }

    /* Testimonials : passe en grid sur tablet+ */
    .bfmtv-page .testimonials-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: visible;
        padding: 10px 0;
        margin: 0;
    }

    /* Version 2 témoignages vidéo : 2 colonnes centrées, largeur contenue */
    .bfmtv-page .testimonials-track--video {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 860px;
        margin: 0 auto;
    }

    .bfmtv-page .testimonial-card {
        flex: initial;
    }

    #bfmtvFooter .section-container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        align-items: center;
    }

    #bfmtvFooter .footer-social {
        justify-content: flex-end;
    }

    #bfmtvFooter .footer-links {
        justify-content: flex-start;
    }

    #bfmtvFooter .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
    }
}


/* ============================================================
   DESKTOP 1024px+
   ============================================================ */
@media screen and (min-width: 1024px) {
    .bfmtv-page h2 {
        font-size: 2.5rem;
    }

    .bfmtv-page #heroSection h1 {
        font-size: 3.25rem;
    }

    .bfmtv-page .intro {
        font-size: 1.1rem;
    }

    .bfmtv-page #opportunity .cards-container {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Reset du span pleine largeur (tablet) : 3 colonnes égales en desktop */
    .bfmtv-page #opportunity .stat-card--headline {
        grid-column: auto;
    }

    .bfmtv-page #why-smartduck .cards-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .bfmtv-page .stat-card .stat-value {
        font-size: 2.75rem;
    }

    /* Sticky CTA en pill top-right sur desktop */
    .sticky-cta {
        left: auto;
        right: 30px;
        bottom: 30px;
        width: auto;
        padding: 14px 24px;
        font-size: 1rem;
    }
}
