/* ==========================================================================
   KINGCAFÉ - Styles spécifiques
   Palette argentée (cohérence charte Kpelly Industries)
   À charger APRÈS style.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES KINGCAFÉ (scope local via .kk)
   -------------------------------------------------------------------------- */

.kk {
    --silver:       #d2d1d1;
    --silver-light: #e6e5e6;
    --silver-dark:  #898888;
    --black:        #0a0a0a;
    --black-soft:   #141414;
    --black-card:   #1a1a1a;
    --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;
}

.kk * {
    box-sizing: border-box;
}

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

/* Défaut : VISIBLE - protège l'affichage si JS ne charge pas */
.kk-reveal {
    opacity: 1;
    transform: none;
}

/* Si JS confirme le support, on masque pour animer ensuite */
.kk-js .kk-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

/* --------------------------------------------------------------------------
   3. HERO
   -------------------------------------------------------------------------- */

.kk-hero__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
    margin-bottom: 36px;
    opacity: 0;
    animation: kkFadeUp 0.9s 1s ease forwards;
}

.kk-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 1px;
    padding: 14px 30px;
    border: 1px solid rgba(245, 240, 232, 0.4);
    border-radius: 2px;
    text-decoration: none;
    transition: all var(--t-base);
}

.kk-btn-outline:hover,
.kk-btn-outline:focus-visible {
    border-color: var(--silver);
    color: var(--silver-light);
    background: rgba(210, 209, 209, 0.06);
    text-decoration: none;
}

.kk-hero__origin {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    border: 1px solid rgba(210, 209, 209, 0.18);
    border-radius: 100px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    font-size: 0.74rem;
    letter-spacing: 2px;
    color: rgba(245, 240, 232, 0.6);
    text-transform: uppercase;
    opacity: 0;
    animation: kkFadeUp 0.9s 1.2s ease forwards;
}

.kk-hero__origin strong {
    color: var(--silver-light);
    font-weight: 700;
}

.kk-hero__origin-line {
    width: 16px;
    height: 1px;
    background: var(--silver);
}

/* Grains de café flottants */
.kk-hero__bean {
    position: absolute;
    width: 14px;
    height: 18px;
    background: var(--silver);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.kk-hero__bean::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: var(--black);
}

.kk-hero__bean--1 {
    top: 22%;
    left: 12%;
    animation: kkBeanFloat 9s ease-in-out infinite;
}

.kk-hero__bean--2 {
    top: 65%;
    right: 14%;
    width: 18px;
    height: 22px;
    animation: kkBeanFloat 11s ease-in-out infinite 1.5s;
}

.kk-hero__bean--3 {
    top: 38%;
    right: 22%;
    width: 10px;
    height: 14px;
    animation: kkBeanFloat 7s ease-in-out infinite 0.8s;
}

@keyframes kkBeanFloat {
    0%, 100% { transform: translateY(0) rotate(20deg); opacity: 0.15; }
    50%      { transform: translateY(-30px) rotate(-10deg); opacity: 0.4; }
}

@media (prefers-reduced-motion: reduce) {
    .kk-hero__bean { animation: none; }
}

/* --------------------------------------------------------------------------
   4. STATS
   -------------------------------------------------------------------------- */

.kk-stats {
    background: var(--black-soft);
    border-top: 1px solid rgba(210, 209, 209, 0.2);
    border-bottom: 1px solid rgba(210, 209, 209, 0.2);
}

.kk-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: 0 auto;
}

.kk-stats__item {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid rgba(210, 209, 209, 0.12);
    transition: background var(--t-base);
}

.kk-stats__item:last-child {
    border-right: none;
}

.kk-stats__item:hover {
    background: rgba(210, 209, 209, 0.04);
}

.kk-stats__num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 900;
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.kk-stats__label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(245, 240, 232, 0.45);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .kk-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .kk-stats__item:nth-child(2) { border-right: none; }
    .kk-stats__item:nth-child(3),
    .kk-stats__item:nth-child(4) { border-top: 1px solid rgba(210, 209, 209, 0.12); }
    .kk-stats__item:nth-child(3) { border-right: 1px solid rgba(210, 209, 209, 0.12); }
}

/* --------------------------------------------------------------------------
   5. INTRO
   -------------------------------------------------------------------------- */

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

.kk-intro__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

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

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

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

.kk-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;
}

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

.kk-title span {
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: italic;
}

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

.kk-intro__img-wrap {
    position: relative;
}

.kk-intro__img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(210, 209, 209, 0.15));
}

.kk-intro__frame {
    position: absolute;
    inset: 20px -20px -20px 20px;
    border: 1px solid rgba(210, 209, 209, 0.2);
    pointer-events: none;
    z-index: -1;
}

.kk-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kk-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid rgba(210, 209, 209, 0.1);
    transition: all var(--t-base);
}

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

.kk-feature__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    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: 0.95rem;
    transition: all var(--t-base);
}

.kk-feature:hover .kk-feature__icon {
    background: var(--silver);
    color: var(--black);
}

.kk-feature__title {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--white-pure);
    margin-bottom: 3px;
}

.kk-feature__text {
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.5;
}

.kk-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--silver);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1px;
    padding: 15px 32px;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    transition: all var(--t-base);
    margin-top: 32px;
}

.kk-btn:hover,
.kk-btn:focus-visible {
    background: var(--silver-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(210, 209, 209, 0.3);
    color: var(--black);
    text-decoration: none;
}

@media (max-width: 991px) {
    .kk-intro__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .kk-intro__img-wrap {
        max-width: 400px;
        margin: 0 auto;
    }
    .kk-intro__frame {
        display: none;
    }
}
/* 1. Aligne le haut de l'image avec le haut du texte */
.kk-intro__inner {
    align-items: start; 
}

/* 2. Empêche l'image de rester trop petite si le texte est long */
.kk-intro__visual {
    position: sticky;
    top: 20px; /* L'image reste visible pendant qu'on lit le texte long */
}

/* 3. Assure que le bouton prend son style correctement */
.kk-btn {
    display: inline-flex; /* Pour que le padding et les marges s'appliquent bien */
    margin-top: 32px;
}

/* 4. Correction spécifique pour les icônes si elles sont décalées */
.kk-feature__icon i {
    display: block;
}

/* --------------------------------------------------------------------------
   6. PRODUITS
   -------------------------------------------------------------------------- */

.kk-products {
    padding: 110px 20px;
    background: var(--black-soft);
}

.kk-products__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.kk-products__header {
    text-align: center;
    margin-bottom: 70px;
}

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

.kk-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.kk-product-card {
    background: var(--black-card);
    border: 1px solid rgba(210, 209, 209, 0.1);
    border-radius: 2px;
    overflow: hidden;
    transition: all var(--t-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px 32px;
    text-align: center;
}

.kk-product-card:hover {
    border-color: var(--silver);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    background: rgba(210, 209, 209, 0.03);
}

.kk-product-card__img-wrap {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.kk-product-card__img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(210, 209, 209, 0.06);
    transition: all var(--t-base);
}

.kk-product-card:hover .kk-product-card__img-wrap::before {
    background: rgba(210, 209, 209, 0.12);
    transform: scale(1.1);
}

.kk-product-card__img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

.kk-product-card:hover .kk-product-card__img {
    transform: scale(1.1) rotate(-3deg);
}

.kk-product-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white-pure);
    margin: 0 0 12px;
}

.kk-product-card__sep {
    width: 30px;
    height: 2px;
    background: var(--silver);
    margin: 0 auto 14px;
    transition: width var(--t-base);
}

.kk-product-card:hover .kk-product-card__sep {
    width: 50px;
}

.kk-product-card__text {
    font-size: 0.83rem;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 767px) {
    .kk-products__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .kk-products__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   7. ARABICA VS ROBUSTA
   -------------------------------------------------------------------------- */

.kk-compare {
    padding: 110px 20px;
    background: var(--black);
}

.kk-compare__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.kk-compare__header {
    text-align: center;
    margin-bottom: 70px;
}

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

.kk-compare__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.kk-compare-card {
    background: var(--black-card);
    border: 1px solid rgba(210, 209, 209, 0.12);
    border-radius: 2px;
    overflow: hidden;
}

.kk-compare-card__head {
    padding: 28px 36px;
    border-bottom: 1px solid rgba(210, 209, 209, 0.12);
    display: flex;
    align-items: center;
    gap: 16px;
}

.kk-compare-card--robusta .kk-compare-card__head {
    background: rgba(210, 209, 209, 0.08);
}

.kk-compare-card--arabica .kk-compare-card__head {
    background: rgba(210, 209, 209, 0.04);
}

.kk-compare-card__badge {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--silver-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--black);
}

.kk-compare-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white-pure);
    margin: 0;
}

.kk-compare-card__origin {
    font-size: 0.72rem;
    color: var(--silver);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.kk-compare-card__body {
    padding: 0 36px 32px;
    margin: 0;
}

.kk-compare-row {
    padding: 20px 0;
    border-bottom: 1px solid rgba(210, 209, 209, 0.07);
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    align-items: start;
}

.kk-compare-row:last-child {
    border-bottom: none;
}

.kk-compare-row__key {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--silver);
    text-transform: uppercase;
    padding-top: 2px;
    margin: 0;
}

.kk-compare-row__val {
    font-size: 0.86rem;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    flex-wrap: wrap;
}

.kk-compare-row__val img {
    width: 52px;
    height: auto;
    opacity: 0.85;
}

@media (max-width: 767px) {
    .kk-compare__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   8. CITATION
   -------------------------------------------------------------------------- */

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

.kk-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;
}

.kk-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;
}

.kk-quote__author {
    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;
}

/* --------------------------------------------------------------------------
   9. PARTENAIRES
   -------------------------------------------------------------------------- */

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

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

.kk-partners__overflow {
    overflow: hidden;
}

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

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

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

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

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

/* --------------------------------------------------------------------------
   10. RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 575px) {
    .kk-intro,
    .kk-products,
    .kk-compare {
        padding: 70px 16px;
    }
}


/* --------------------------------------------------------------------------
   11. PROCESS « DU GRAIN À LA TASSE »
   -------------------------------------------------------------------------- */

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

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

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

.kk-process__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;
}

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

.kk-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;
}

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

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

.kk-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);
}

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

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

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

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

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

/* --------------------------------------------------------------------------
   12. FAQ ACCORDION
   -------------------------------------------------------------------------- */

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

.kk-faq__inner {
    max-width: 860px;
    margin: 0 auto;
}

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

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

.kk-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);
}

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

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

.kk-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);
}

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

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

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

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

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

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

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

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

/* --------------------------------------------------------------------------
   13. B2B / PROS
   -------------------------------------------------------------------------- */

/* Section Professionnels */
.kk-pros {
    padding: 110px 20px;
    background: #1d1d1b; /* Fond de section noir pur */
    border-top: 1px solid rgba(210, 209, 209, 0.08);
}

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

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

.kk-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;
}

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

/* Correction Couleur des Cards */
.kk-pros-card {
    background: #000000 !important; /* Couleur demandée */
    border: 1px solid rgba(210, 209, 209, 0.2);
    border-radius: 4px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
}

.kk-pros-card--featured {
    background: #000000 !important;
    border-color: #d2d1d1; /* Mise en avant par la bordure */
}

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

.kk-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;
}

.kk-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: #d2d1d1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 22px;
}

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

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

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

.kk-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;
}

.kk-pros-card__list li::before {
    content: '-';
    color: #d2d1d1;
}

/* Correction des Boutons */
.kk-pros__cta {
    text-align: center;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Bouton Devis : Fond Blanc / Texte Noir */
.kk-btn-silver {
    background: #ffffff !important;
    color: #000000 !important;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.kk-btn-silver:hover {
    background: #f0f0f0 !important;
}

/* Bouton Contact : Transparent bordure blanche / Texte blanc */
.kk-btn-ghost {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid #ffffff;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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