/* ==========================================================================
   FORPELLY CHIPS - Styles spécifiques
   Thème : tout sombre + accents argentés (cohérence KingCafé)
   À charger APRÈS style.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES (scope local via .fc)
   -------------------------------------------------------------------------- */

.fc {
    --silver:       #d2d1d1;
    --silver-light: #e6e5e6;
    --silver-dark:  #898888;
    --black:        #0a0a0a;
    --black-soft:   #141414;
    --black-card:   #1a1a1a;
    --black-pure:   #000000;
    --white:        #f5f0e8;
    --white-pure:   #ffffff;

    --silver-gradient: linear-gradient(
        135deg,
        #fbfbfb 0%,
        #898888 25%,
        #d2d1d1 50%,
        #474746 75%,
        #898888 100%
    );

    --t-fast: 0.25s ease;
    --t-base: 0.4s ease;
    --t-slow: 0.7s ease;
}

.fc * { box-sizing: border-box; }
.fc h1, .fc h2, .fc h3, .fc h4, .fc p, .fc ol, .fc ul, .fc dl { margin: 0; padding: 0; }

/* --------------------------------------------------------------------------
   2. REVEAL (progressive enhancement)
   -------------------------------------------------------------------------- */

.fc-reveal { opacity: 1; transform: none; }

.fc-js .fc-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fc-js .fc-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.fc-reveal-d1 { transition-delay: 0.1s; }
.fc-reveal-d2 { transition-delay: 0.2s; }
.fc-reveal-d3 { transition-delay: 0.3s; }
.fc-reveal-d4 { transition-delay: 0.4s; }
.fc-reveal-d5 { transition-delay: 0.5s; }
.fc-reveal-d6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
    .fc-js .fc-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* --------------------------------------------------------------------------
   3. UTILITAIRES
   -------------------------------------------------------------------------- */

.fc-mt32 { margin-top: 32px; display: inline-flex; }

/* --------------------------------------------------------------------------
   4. LABELS & TITRES
   -------------------------------------------------------------------------- */

.fc-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 14px;
}

.fc-label--center { justify-content: center; }

.fc-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--silver);
}

.fc-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white-pure);
    margin: 0 0 24px;
}

.fc-title--center { text-align: center; margin-bottom: 14px; }

.fc-title span,
.fc-title em {
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: italic;
    font-weight: 300;
}

.fc-body {
    font-size: 0.96rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.9;
    margin: 0 0 16px;
}

.fc-body strong { color: var(--white-pure); font-weight: 500; }

/* --------------------------------------------------------------------------
   5. BOUTONS - fond blanc / texte noir + variant ghost
   -------------------------------------------------------------------------- */

.fc-btn-silver {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #000000;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1px;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--t-base);
}

.fc-btn-silver:hover,
.fc-btn-silver:focus-visible {
    background: #f0f0f0;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

.fc-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 1px;
    padding: 16px 32px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--t-base);
}

.fc-btn-ghost:hover,
.fc-btn-ghost:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------
   7. INTRO (dark)
   -------------------------------------------------------------------------- */

.fc-intro {
    padding: 110px 20px;
    background: var(--black);
}

.fc-intro__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.fc-intro__visual {
    display: flex;
    justify-content: center;
}

.fc-intro__img-wrap {
    position: relative;
    max-width: 460px;
    width: 100%;
}

.fc-intro__img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    filter: drop-shadow(0 30px 50px rgba(210, 209, 209, 0.12));
    position: relative;
    z-index: 2;
}

.fc-intro__img-frame {
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid rgba(210, 209, 209, 0.25);
    pointer-events: none;
    z-index: 1;
}

.fc-intro__img-badge {
    position: absolute;
    bottom: -22px;
    right: -22px;
    background: var(--silver-gradient);
    padding: 22px 26px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.fc-intro__img-badge strong {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 900;
    color: var(--black);
    display: block;
    line-height: 1.3;
}

.fc-intro__img-badge span {
    font-size: 0.62rem;
    font-weight: 700;
    color: rgba(10, 10, 10, 0.75);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.fc-intro__ingredients {
    margin-top: 32px;
}

.fc-ingredients {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}

.fc-ingredient {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border: 1px solid rgba(210, 209, 209, 0.12);
    border-radius: 4px;
    transition: all var(--t-base);
}

.fc-ingredient:hover {
    border-color: var(--silver);
    background: rgba(210, 209, 209, 0.04);
    transform: translateX(4px);
}

.fc-ingredient__dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background: var(--silver-gradient);
    border-radius: 50%;
}

.fc-ingredient__text {
    font-size: 0.84rem;
    color: rgba(245, 240, 232, 0.7);
    font-weight: 500;
}

@media (max-width: 991px) {
    .fc-intro__inner { grid-template-columns: 1fr; gap: 60px; }
    .fc-intro__visual { order: -1; }
    .fc-intro__img-wrap { max-width: 380px; }
    .fc-intro__img-frame { display: none; }
    .fc-intro__img-badge { right: 16px; bottom: -18px; }
}

@media (max-width: 575px) {
    .fc-ingredients { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   8. PROCESS (dark soft)
   -------------------------------------------------------------------------- */

.fc-process {
    padding: 110px 20px;
    background: var(--black-soft);
    border-top: 1px solid rgba(210, 209, 209, 0.08);
}

.fc-process__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.fc-process__header {
    text-align: center;
    margin-bottom: 70px;
}

.fc-process__sub {
    max-width: 620px;
    margin: 0 auto;
    font-size: 0.96rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.85;
}

.fc-process__steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.fc-process__steps::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--silver) 20%,
        var(--silver) 80%,
        transparent 100%
    );
    opacity: 0.3;
    z-index: 0;
}

.fc-process__step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.fc-process__num {
    font-family: 'Playfair Display', serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--silver);
    margin-bottom: 12px;
}

.fc-process__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--black-card);
    border: 1px solid var(--silver);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    font-size: 1.5rem;
    transition: all var(--t-base);
}

.fc-process__step:hover .fc-process__icon {
    background: var(--silver);
    color: var(--black);
    transform: scale(1.08);
}

.fc-process__step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white-pure);
    margin-bottom: 10px;
}

.fc-process__step-text {
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.65;
}

@media (max-width: 991px) {
    .fc-process__steps { grid-template-columns: repeat(2, 1fr); gap: 50px 20px; }
    .fc-process__steps::before { display: none; }
}

@media (max-width: 480px) {
    .fc-process__steps { grid-template-columns: 1fr; gap: 36px; }
}

/* --------------------------------------------------------------------------
   9. POURQUOI FORPELLY (dark)
   -------------------------------------------------------------------------- */

.fc-why {
    padding: 110px 20px;
    background: var(--black);
}

.fc-why__inner {
    max-width: 1180px;
    margin: 0 auto;
}

.fc-why__header {
    text-align: center;
    margin-bottom: 70px;
}

.fc-why__sub {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.96rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.8;
}

.fc-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.fc-why-card {
    background: var(--black-card);
    padding: 48px 36px 40px;
    border-top: 3px solid transparent;
    text-align: center;
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
}

.fc-why-card:hover {
    border-top-color: var(--silver);
    transform: translateY(-5px);
    background: rgba(210, 209, 209, 0.03);
}

.fc-why-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(210, 209, 209, 0.08);
    border: 1px solid rgba(210, 209, 209, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--silver);
    margin: 0 auto 22px;
    transition: all var(--t-base);
}

.fc-why-card:hover .fc-why-card__icon {
    background: var(--silver);
    color: var(--black);
}

.fc-why-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white-pure);
    margin-bottom: 14px;
}

.fc-why-card__text {
    font-size: 0.86rem;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.75;
}

@media (max-width: 767px) {
    .fc-why__grid { grid-template-columns: 1fr; gap: 3px; }
}

/* --------------------------------------------------------------------------
   10. GALLERY (dark soft)
   -------------------------------------------------------------------------- */

.fc-gallery {
    padding: 110px 20px;
    background: var(--black-soft);
    border-top: 1px solid rgba(210, 209, 209, 0.08);
}

.fc-gallery__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.fc-gallery__header {
    text-align: center;
    margin-bottom: 60px;
}

.fc-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 4px;
}

.fc-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.fc-gallery__item--lg { grid-column: span 2; grid-row: span 2; }
.fc-gallery__item--wide { grid-column: span 2; }

.fc-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.fc-gallery__item:hover .fc-gallery__img {
    transform: scale(1.08);
}

.fc-gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.4) 40%,
        transparent 75%
    );
    display: flex;
    align-items: flex-end;
    padding: 22px 24px;
    transition: background 0.4s;
}

.fc-gallery__caption {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white-pure);
    position: relative;
    padding-left: 16px;
}

.fc-gallery__caption::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background: var(--silver);
    transition: width 0.4s;
}

.fc-gallery__item:hover .fc-gallery__caption::before {
    width: 14px;
}

@media (max-width: 767px) {
    .fc-gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .fc-gallery__item--lg { grid-column: span 2; grid-row: span 1; height: 240px; }
    .fc-gallery__item--wide { grid-column: span 2; }
    .fc-gallery__item { height: 200px; }
}

@media (max-width: 480px) {
    .fc-gallery__grid { grid-template-columns: 1fr; }
    .fc-gallery__item--lg,
    .fc-gallery__item--wide { grid-column: span 1; }
    .fc-gallery__item { height: 220px; }
}

/* --------------------------------------------------------------------------
   11. CERTIFICATIONS (dark)
   -------------------------------------------------------------------------- */

.fc-certif {
    padding: 110px 20px;
    background: var(--black);
}

.fc-certif__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.fc-certif__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.fc-certif__item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border: 1px solid rgba(210, 209, 209, 0.12);
    border-radius: 4px;
    transition: all var(--t-base);
}

.fc-certif__item:hover {
    border-color: var(--silver);
    background: rgba(210, 209, 209, 0.04);
    transform: translateX(6px);
}

.fc-certif__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(210, 209, 209, 0.08);
    border: 1px solid rgba(210, 209, 209, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    font-size: 1.05rem;
    transition: all var(--t-base);
}

.fc-certif__item:hover .fc-certif__icon {
    background: var(--silver);
    color: var(--black);
    transform: rotate(-6deg);
}

.fc-certif__title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white-pure);
    margin-bottom: 4px;
}

.fc-certif__text {
    font-size: 0.83rem;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.6;
}

.fc-certif__visual {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.fc-certif__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.fc-certif__img-frame {
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid rgba(210, 209, 209, 0.25);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 991px) {
    .fc-certif__inner { grid-template-columns: 1fr; gap: 50px; }
    .fc-certif__img-frame { display: none; }
}

/* --------------------------------------------------------------------------
   12. FAQ (dark soft)
   -------------------------------------------------------------------------- */

.fc-faq {
    padding: 110px 20px;
    background: var(--black-soft);
    border-top: 1px solid rgba(210, 209, 209, 0.08);
}

.fc-faq__inner {
    max-width: 880px;
    margin: 0 auto;
}

.fc-faq__header {
    text-align: center;
    margin-bottom: 50px;
}

.fc-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fc-faq__item {
    border: 1px solid rgba(210, 209, 209, 0.12);
    border-radius: 2px;
    background: var(--black-card);
    overflow: hidden;
    transition: border-color var(--t-base);
}

.fc-faq__item:hover {
    border-color: rgba(210, 209, 209, 0.3);
}

.fc-faq__item.open {
    border-color: var(--silver);
}

.fc-faq__q {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    color: var(--white-pure);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color var(--t-fast);
}

.fc-faq__q:hover,
.fc-faq__q:focus-visible {
    color: var(--silver-light);
}

.fc-faq__q i {
    color: var(--silver);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform var(--t-base);
}

.fc-faq__item.open .fc-faq__q i {
    transform: rotate(45deg);
}

.fc-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-base) ease;
}

.fc-faq__item.open .fc-faq__a {
    max-height: 400px;
}

.fc-faq__a p {
    padding: 0 26px 24px;
    font-size: 0.88rem;
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.8;
}

.fc-faq__a a {
    color: var(--silver);
    text-decoration: underline;
}

.fc-faq__a strong {
    color: var(--white-pure);
}

/* --------------------------------------------------------------------------
   13. PROS / B2B (noir pur)
   -------------------------------------------------------------------------- */

.fc-pros {
    padding: 110px 20px;
    background: #1d1d1b;
    border-top: 1px solid rgba(210, 209, 209, 0.08);
}

.fc-pros__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.fc-pros__header {
    text-align: center;
    margin-bottom: 60px;
}

.fc-pros__sub {
    max-width: 620px;
    margin: 0 auto;
    font-size: 0.96rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.8;
}

.fc-pros__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.fc-pros-card {
    background: #000000;
    border: 1px solid rgba(210, 209, 209, 0.2);
    border-radius: 4px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
}

.fc-pros-card--featured {
    background: #000000;
    border-color: var(--silver);
}

.fc-pros-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    border-color: #ffffff;
}

.fc-pros-card__badge {
    position: absolute;
    top: -12px;
    left: 32px;
    padding: 5px 14px;
    background: #ffffff;
    color: #000000;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.fc-pros-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 2px;
    background: rgba(210, 209, 209, 0.08);
    border: 1px solid rgba(210, 209, 209, 0.25);
    color: var(--silver);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 22px;
}

.fc-pros-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.fc-pros-card__text {
    font-size: 0.86rem;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.75;
    margin-bottom: 20px;
}

.fc-pros-card__list {
    list-style: none;
    border-top: 1px solid rgba(210, 209, 209, 0.1);
    padding-top: 18px;
}

.fc-pros-card__list li {
    padding: 8px 0;
    font-size: 0.83rem;
    color: rgba(245, 240, 232, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
}

.fc-pros-card__list li::before {
    content: '-';
    color: var(--silver);
}

.fc-pros__cta {
    text-align: center;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .fc-pros__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 50px; }
}

/* --------------------------------------------------------------------------
   14. CITATION (whitesmoke - la seule section claire)
   -------------------------------------------------------------------------- */

.fc-quote {
    padding: 80px 20px;
    background: whitesmoke;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fc-quote::before {
    content: '❝';
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 18rem;
    color: rgba(10, 10, 10, 0.07);
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
}

.fc-quote__text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    font-weight: 700;
    font-style: italic;
    color: var(--black);
    max-width: 750px;
    margin: 0 auto 16px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.fc-quote__author {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(10, 10, 10, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    font-style: normal;
}

/* --------------------------------------------------------------------------
   15. PARTENAIRES (dark soft)
   -------------------------------------------------------------------------- */

.fc-partners {
    padding: 70px 20px;
    background: var(--black-soft);
    border-top: 1px solid rgba(210, 209, 209, 0.1);
    overflow: hidden;
}

.fc-partners__label {
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.3);
    margin-bottom: 36px;
}

.fc-partners__overflow {
    overflow: hidden;
}

.fc-partners__track {
    display: flex;
    gap: 60px;
    animation: fcMarquee 28s linear infinite;
    width: max-content;
    align-items: center;
}

.fc-partners__track img {
    height: 36px;
    opacity: 0.7;
    transition: all var(--t-base);
    flex-shrink: 0;
}

.fc-partners__track img:hover {
    opacity: 1;
    transform: scale(1.08);
}

.fc-partners:hover .fc-partners__track {
    animation-play-state: paused;
}

@keyframes fcMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE GLOBAL
   -------------------------------------------------------------------------- */

@media (max-width: 575px) {
    .fc-intro,
    .fc-process,
    .fc-why,
    .fc-gallery,
    .fc-certif,
    .fc-faq,
    .fc-pros {
        padding: 80px 16px;
    }

    .fc-quote { padding: 70px 18px; }
    .fc-pros-card { padding: 36px 26px; }
    .fc-faq__q { padding: 20px 22px; }
    .fc-faq__a p { padding: 0 22px 22px; }
    .fc-certif__item { padding: 16px 18px; gap: 14px; }
}