/* ==========================================================================
KPELLY INDUSTRIES - Feuille de styles
Palette : Noir + Argenté (charte graphique 2024)
Police  : Montserrat (charte) + Playfair Display (serif d'appoint)
========================================================================== */

/* --------------------------------------------------------------------------
1. VARIABLES
-------------------------------------------------------------------------- */

:root {
    /* Palette argentée - charte 2024 */
    --silver:        #d2d1d1;
    --silver-light:  #e6e5e6;
    --silver-dark:   #898888;
    --silver-deep:   #686868;

    /* Noirs */
    --black:         #0a0a0a;
    --black-soft:    #141414;
    --black-card:    #1a1a1a;

    /* Blancs */
    --white:         #f5f0e8;
    --white-pure:    #ffffff;

    --gray-light:    #2a2a2a;

    /* Gradient laminé (signature de la charte) */
    --silver-gradient: linear-gradient(
        135deg,
        #fbfbfb 0%,
        #898888 25%,
        #d2d1d1 50%,
        #474746 75%,
        #898888 100%
    );

    /* Espacements */
    --section-pad:    110px 20px;
    --section-pad-sm: 70px 16px;

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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
}

/* --------------------------------------------------------------------------
   2. ACCESSIBILITÉ
   -------------------------------------------------------------------------- */

.ki-skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    background: var(--silver);
    color: var(--black);
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 700;
    z-index: 9999;
    transition: top var(--t-fast);
}

.ki-skip-link:focus {
    top: 16px;
    outline: 2px solid var(--white-pure);
    outline-offset: 2px;
}

:focus-visible {
    outline: 2px solid var(--silver);
    outline-offset: 3px;
    border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.ki-hidden {
    display: none !important;
}

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

.ki-text-center { text-align: center; }
.ki-mb-0        { margin-bottom: 0; }
.ki-mb36        { margin-bottom: 36px; }
.ki-mb40        { margin-bottom: 40px; }
.ki-mb44        { margin-bottom: 44px; }
.ki-btn--mt12   { margin-top: 12px; display: inline-flex; }
.ki-btn--mt40   { margin-top: 40px; display: inline-flex; }
.ki-btn--block  { width: 100%; justify-content: center; }

/* --------------------------------------------------------------------------
   4. TOPBAR
   -------------------------------------------------------------------------- */

.ki-topbar {
    background: var(--black);
    border-bottom: 1px solid rgba(210, 209, 209, 0.12);
    padding: 0 40px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .ki-topbar { display: none; }
}

.ki-topbar__left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.ki-topbar__item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(245, 240, 232, 0.45);
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color var(--t-fast);
}

.ki-topbar__item:hover,
.ki-topbar__item:focus-visible {
    color: var(--silver-light);
    text-decoration: none;
}

.ki-topbar__item i {
    color: var(--silver);
    font-size: 0.7rem;
}

.ki-topbar__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ki-topbar__social {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(210, 209, 209, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.65rem;
    text-decoration: none;
    transition: all var(--t-fast);
}

.ki-topbar__social:hover,
.ki-topbar__social:focus-visible {
    border-color: var(--silver);
    color: var(--silver-light);
    background: rgba(210, 209, 209, 0.08);
}

/* --------------------------------------------------------------------------
   5. NAVBAR
   -------------------------------------------------------------------------- */

.ki-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.97);
    border-bottom: 1px solid rgba(210, 209, 209, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--t-base);
}

.ki-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(210, 209, 209, 0.25);
}

.ki-navbar__brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ki-navbar__brand-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ki-navbar__brand-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.ki-navbar__brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--white-pure);
    letter-spacing: 1px;
    line-height: 1;
}

.ki-navbar__brand-name span {
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ki-navbar__brand-sub {
    font-size: 0.58rem;
    font-weight: 500;
    color: rgba(245, 240, 232, 0.35);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

.ki-navbar__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ki-navbar__link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
    text-decoration: none;
    padding: 8px 14px;
    border-bottom: 2px solid transparent;
    transition: all var(--t-fast);
    white-space: nowrap;
}

.ki-navbar__link:hover,
.ki-navbar__link:focus-visible,
.ki-navbar__link.active {
    color: var(--silver-light);
    border-bottom-color: var(--silver);
    text-decoration: none;
}

.ki-navbar__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--silver);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 22px;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    transition: all var(--t-base);
    flex-shrink: 0;
    margin-left: 16px;
}

.ki-navbar__cta:hover,
.ki-navbar__cta:focus-visible {
    background: var(--silver-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(210, 209, 209, 0.25);
    color: var(--black);
    text-decoration: none;
}

.ki-navbar__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.ki-navbar__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--t-base);
}

.ki-navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ki-navbar__burger.open span:nth-child(2) { opacity: 0; }
.ki-navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ki-navbar__mobile {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(210, 209, 209, 0.15);
    padding: 24px 32px 32px;
    z-index: 999;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 4px;
}

.ki-navbar__mobile.open {
    display: flex;
}

.ki-navbar__mobile-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(210, 209, 209, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color var(--t-fast);
}

.ki-navbar__mobile-link:hover,
.ki-navbar__mobile-link:focus-visible {
    color: var(--silver-light);
    text-decoration: none;
}

.ki-navbar__mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--silver);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px;
    border-radius: 2px;
    text-decoration: none;
    margin-top: 16px;
    transition: background var(--t-fast);
}

.ki-navbar__mobile-cta:hover,
.ki-navbar__mobile-cta:focus-visible {
    background: var(--silver-light);
    color: var(--black);
    text-decoration: none;
}

@media (max-width: 991px) {
    .ki-navbar { padding: 0 24px; }
    .ki-navbar__nav,
    .ki-navbar__cta { display: none; }
    .ki-navbar__burger { display: flex; }
}

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

:root {
    --or-chaud: #c5a04d;
    --blanc: #ffffff;
    --container: 1200px;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: #000;
    overflow: hidden;
    color: var(--blanc);
    font-family: 'Montserrat', sans-serif; /* Proche du style vidéo */
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero__slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s linear;
}

.hero__slide.active .hero__bg {
    transform: scale(1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.2));
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations de texte */
.hero__slide.active .hero__title,
.hero__slide.active .hero__subtitle,
.hero__slide.active .hero__actions,
.hero__slide.active .hero__badge {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero__slide.active .hero__badge { animation-delay: 0.2s; }
.hero__slide.active .hero__title { animation-delay: 0.4s; }
.hero__slide.active .hero__subtitle { animation-delay: 0.6s; }
.hero__slide.active .hero__actions { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero__badge span {
    width: 8px;
    height: 8px;
    background: var(--or-chaud);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--or-chaud);
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight { color: var(--or-chaud); }

.hero__subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Boutons */
.hero__actions { display: flex; gap: 20px; }

.btn {
    padding: 18px 32px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-gold { background: var(--or-chaud); color: #000; }
.btn-outline { border: 2px solid #fff; color: #fff; }

.btn:hover { transform: translateY(-5px); filter: brightness(1.1); }

/* Indicateurs */
.hero__indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 12px;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.hero__dot.active {
    background: var(--or-chaud);
    width: 30px;
    border-radius: 10px;
}

/* --------------------------------------------------------------------------
    ABLEVI PROMO
   -------------------------------------------------------------------------- */
:root {
    --gold: #c5a04d;
    --dark-bg: #1a1a1a;
    --white: #ffffff;
    }

    .section--dark {
    background-color: var(--dark-bg);
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
    }

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

    .ablevi-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 400px;
    padding: 50px;
    border-radius: 10px;
    overflow: hidden;
    color: var(--white);
    /* Ton image de fond */
    background-image: linear-gradient(to right, rgba(0,0,0,0.8) 30%, transparent), url('assets/img/FP5.jpeg');
    background-size: cover;
    background-position: center;
    }

    .ablevi-banner__content {
    max-width: 600px;
    z-index: 2;
    }

    .ablevi-banner__tag {
    color: #e6e5e6;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: bold;
    text-transform: uppercase;
    }

    .ablevi-banner__content h2 {
    font-size: 2.5rem;
    margin: 20px 0;
    line-height: 1.1;
    font-weight: 800;
    }

    .ablevi-banner__content p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    }

    /* Boutons */
    .ablevi-banner__actions {
    display: flex;
    gap: 15px;
    }

    .btn {
    padding: 15px 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    border-radius: 4px;
    transition: 0.3s ease;
    }

    .btn-gold {
    background-color: #d8d6d7;
    color: #000;
    }

    .btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    }

    .btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    }

    /* Badge de prix à droite */
    .price-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .price-box strong {
    display: block;
    font-size: 32px;
    color: #ffffff;
    }

    .price-box span {
    display: block;
    font-size: 12px;
    margin: 5px 0;
    }

    .price-box small {
    opacity: 0.7;
    font-size: 10px;
    }

    /* --- ANIMATION FADE UP --- */
    .fade-up-animation {
    animation: fadeUp 1s ease-out forwards;
    }

    @keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    /* Responsive pour mobile */
    @media (max-width: 768px) {
    .ablevi-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .ablevi-banner__actions {
        flex-direction: column;
    }
    .price-box {
        margin-top: 30px;
    }
}


/* --------------------------------------------------------------------------
    TEMOIGNAGES
   -------------------------------------------------------------------------- */
.section--grey {
    background-color: #121212; /* Très sombre pour coller à l'image */
    padding: 80px 0;
    color: #ffffff;
    }

    .section__header {
    margin-bottom: 50px;
    }

    .section__label {
    color: #d8d6d7;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: bold;
    }

    .divider {
    width: 50px;
    height: 2px;
    background: #ffffff;
    margin: 15px auto;
    }

    /* Grille de témoignages */
    .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    }

    .testimonial-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
    transform: translateY(-10px);
    border-color: #ffffff;
    }

    .testimonial-stars {
    color: #ffffff;
    margin-bottom: 20px;
    }

    .testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ccc;
    }

    .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    }

    .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    }

    .testimonial-author__name {
    font-weight: bold;
    font-size: 16px;
    }

    .testimonial-author__role {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
    }

    .testimonial-product {
    background: rgba(197, 160, 77, 0.15); /* Fond doré très léger */
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: bold;
    }

    /* On réutilise l'animation fade-up du message précédent */
    .fade-up-animation {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
    }

    @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
    ILS PARLE DE NOUS
-------------------------------------------------------------------------- */
.section--dark-press {
    background-color: #121212;
    padding: 80px 20px;
    color: #fff;
    }

    /* Aligner le titre à gauche comme sur l'image */
    .section--dark-press .section__header {
    text-align: left;
    margin-bottom: 50px;
    }

    .press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    }

    .press-card {
    background: #1a1a1a;
    padding: 35px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    }

    .press-card:hover {
    background: #222;
    border-color: rgba(197, 160, 77, 0.3);
    transform: translateY(-5px);
    }

    .press-card__source {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    }

    .press-card__logo {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 10px;
    border-radius: 6px;
    color: white;
    }

    .press-card__source-name {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    }

    .press-card__date {
    font-size: 11px;
    color: #777;
    }

    .press-card__title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-weight: 700;
    }

    .press-card__excerpt {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 25px;
    }

    .press-card__link {
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    }

    .press-card__link:hover {
    color: var(--gold, #c5a04d);
    }

    /* Réutilisation de l'animation fade-up définie précédemment */
    .fade-up-animation {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

/* --------------------------------------------------------------------------
    7. BOUTONS
   -------------------------------------------------------------------------- */

.ki-btn-silver {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--silver);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 16px 36px;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    transition: all var(--t-base);
    cursor: pointer;
}

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

.ki-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.9rem;
    letter-spacing: 1px;
    padding: 15px 36px;
    border: 1px solid rgba(245, 240, 232, 0.4);
    border-radius: 2px;
    text-decoration: none;
    transition: all var(--t-base);
    cursor: pointer;
}

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

/* --------------------------------------------------------------------------
   8. STATS
   -------------------------------------------------------------------------- */

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

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

.ki-stats__item {
    padding: 44px 32px;
    text-align: center;
    border-right: 1px solid rgba(210, 209, 209, 0.15);
    transition: background var(--t-base);
}

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

.ki-stats__item:hover {
    background: rgba(210, 209, 209, 0.05);
}

.ki-stats__number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    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;
}

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

/* --------------------------------------------------------------------------
   9. TITRES DE SECTION
   -------------------------------------------------------------------------- */

.ki-section-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: 16px;
}

.ki-section-label--center {
    justify-content: center;
}

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

.ki-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white-pure);
    margin: 0 0 20px;
}

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

.ki-section-body {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.8;
    max-width: 520px;
    margin: 0;
}

/* --------------------------------------------------------------------------
   10. ABOUT
   -------------------------------------------------------------------------- */

.ki-about {
    padding: var(--section-pad);
    background: var(--black);
}

.ki-about__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ki-about__visual {
    position: relative;
}

.ki-about__img-main {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.ki-about__img-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 180px;
    height: 180px;
    background: var(--silver-gradient);
    background-size: 200% 200%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.ki-about__img-badge strong {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}

.ki-about__img-badge span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.ki-about__filiales {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.ki-filiale-card {
    padding: 20px;
    border: 1px solid rgba(210, 209, 209, 0.2);
    border-radius: 2px;
    transition: all var(--t-base);
    cursor: default;
}

.ki-filiale-card:hover {
    background: rgba(210, 209, 209, 0.06);
    border-color: var(--silver);
    transform: translateY(-3px);
}

.ki-filiale-card--full {
    grid-column: span 2;
}

.ki-filiale-card__icon {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.ki-filiale-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--silver-light);
    margin-bottom: 4px;
}

.ki-filiale-card__desc {
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   11. PRODUCTS
   -------------------------------------------------------------------------- */

.ki-products {
    padding: var(--section-pad);
    background: var(--black-soft);
}

.ki-products__inner {
    max-width: 1200px;
    margin: 0 auto;
}

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

.ki-products__header .ki-section-body {
    margin: 0 auto;
}

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

.ki-product-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    cursor: pointer;
}

.ki-product-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.ki-product-card:hover .ki-product-card__img {
    transform: scale(1.08);
}

.ki-product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.1) 60%
    );
    transition: background var(--t-base);
}

.ki-product-card:hover .ki-product-card__overlay {
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(210, 209, 209, 0.18) 100%
    );
}

.ki-product-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px;
    transform: translateY(10px);
    transition: transform var(--t-base);
}

.ki-product-card:hover .ki-product-card__content {
    transform: translateY(0);
}

.ki-product-card__tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 8px;
}

.ki-product-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white-pure);
    margin: 0 0 10px;
    line-height: 1.2;
}

.ki-product-card__desc {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s 0.1s ease;
    max-height: 0;
    overflow: hidden;
    margin: 0;
}

.ki-product-card:hover .ki-product-card__desc {
    opacity: 1;
    transform: translateY(0);
    max-height: 80px;
}

/* --------------------------------------------------------------------------
   12. QUOTE BAND
   -------------------------------------------------------------------------- */

.ki-quote-band {
    padding: 90px 20px;
    background: var(--silver-gradient);
    background-size: 200% 200%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.ki-quote-band__text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    font-style: italic;
    color: var(--black);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.ki-quote-band__author {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(10, 10, 10, 0.65);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    font-style: normal;
}

/* --------------------------------------------------------------------------
   13. CAFE
   -------------------------------------------------------------------------- */

.ki-cafe {
    padding: var(--section-pad);
    background: var(--black);
}

.ki-cafe__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ki-cafe__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 12px;
}

.ki-cafe__gallery > div {
    overflow: hidden;
    position: relative;
}

.ki-cafe__gallery > div:first-child {
    grid-row: span 2;
}

.ki-cafe__gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ki-cafe__gallery-img:hover {
    transform: scale(1.04);
}

.ki-cafe__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.ki-cafe__feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(210, 209, 209, 0.1);
    border: 1px solid rgba(210, 209, 209, 0.3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    font-size: 1.1rem;
}

.ki-cafe__feature-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white-pure);
    margin: 0 0 4px;
}

.ki-cafe__feature-text {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.6;
    margin: 0;
}

/* --------------------------------------------------------------------------
   14. WHY US
   -------------------------------------------------------------------------- */

.ki-why {
    padding: var(--section-pad);
    background: var(--black-soft);
}

.ki-why__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ki-why__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 70px;
}

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

.ki-why-card {
    background: var(--black-card);
    padding: 44px 32px;
    border-top: 3px solid transparent;
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
}

.ki-why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(210, 209, 209, 0.06) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity var(--t-base);
}

.ki-why-card:hover {
    border-top-color: var(--silver);
    transform: translateY(-4px);
}

.ki-why-card:hover::after {
    opacity: 1;
}

.ki-why-card__num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(210, 209, 209, 0.12);
    line-height: 1;
    margin-bottom: 20px;
    transition: color var(--t-base);
}

.ki-why-card:hover .ki-why-card__num {
    color: rgba(210, 209, 209, 0.3);
}

.ki-why-card__icon {
    font-size: 1.6rem;
    color: var(--silver);
    margin-bottom: 16px;
}

.ki-why-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white-pure);
    margin: 0 0 12px;
    line-height: 1.3;
}

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

/* --------------------------------------------------------------------------
   15. INVEST
   -------------------------------------------------------------------------- */

.ki-invest {
    padding: var(--section-pad);
    background: var(--black);
}

.ki-invest__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ki-invest__header {
    text-align: center;
    margin-bottom: 70px;
}

.ki-invest__header .ki-section-body {
    margin: 0 auto;
}

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

.ki-invest-card {
    background: var(--black-card);
    border: 1px solid rgba(210, 209, 209, 0.1);
    border-radius: 2px;
    overflow: hidden;
    transition: all var(--t-base);
}

.ki-invest-card:hover {
    border-color: var(--silver);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.ki-invest-card__img-wrap {
    overflow: hidden;
}

.ki-invest-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ki-invest-card:hover .ki-invest-card__img {
    transform: scale(1.05);
}

.ki-invest-card__body {
    padding: 28px 24px;
}

.ki-invest-card__tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 10px;
}

.ki-invest-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white-pure);
    margin: 0 0 12px;
    line-height: 1.3;
}

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

.ki-invest__cta {
    text-align: center;
    margin-top: 50px;
}

/* --------------------------------------------------------------------------
   16. FOUNDER
   -------------------------------------------------------------------------- */

.ki-founder {
    padding: var(--section-pad);
    background: var(--black-soft);
}

.ki-founder__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
}

.ki-founder__photo-wrap {
    position: relative;
}

.ki-founder__photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.ki-founder__photo-frame {
    position: absolute;
    inset: 20px -20px -20px 20px;
    border: 1px solid rgba(210, 209, 209, 0.3);
    pointer-events: none;
    z-index: -1;
}

.ki-founder__logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.ki-founder__logo {
    height: 36px;
    transition: all var(--t-base);
}

.ki-founder__logo:hover {
    transform: scale(1.05);
}

.ki-founder__timeline {
    margin: 36px 0 0;
    padding-left: 20px;
    border-left: 1px solid rgba(210, 209, 209, 0.25);
    list-style: none;
}

.ki-founder__timeline-item {
    position: relative;
    padding: 0 0 24px 24px;
}

.ki-founder__timeline-item::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 6px;
    width: 9px;
    height: 9px;
    background: var(--silver);
    border-radius: 50%;
}

.ki-founder__timeline-year {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--silver);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ki-founder__timeline-text {
    font-size: 0.88rem;
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   17. VIDEO
   -------------------------------------------------------------------------- */

.ki-video {
    position: relative;
    padding: var(--section-pad);
    background: var(--black);
    overflow: hidden;
}

.ki-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(210, 209, 209, 0.08) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.ki-video__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ki-video__player {
    width: 100%;
    border-radius: 4px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(210, 209, 209, 0.2);
    display: block;
    margin-top: 50px;
}

/* --------------------------------------------------------------------------
   18. NEWS
   -------------------------------------------------------------------------- */

.ki-news {
    padding: var(--section-pad);
    background: var(--black-soft);
}

.ki-news__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ki-news__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.ki-news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ki-news-card {
    background: var(--black-card);
    border: 1px solid rgba(210, 209, 209, 0.08);
    overflow: hidden;
    border-radius: 2px;
    transition: all var(--t-base);
}

.ki-news-card:hover {
    border-color: rgba(210, 209, 209, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.ki-news-card__img-wrap {
    overflow: hidden;
}

.ki-news-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ki-news-card:hover .ki-news-card__img {
    transform: scale(1.04);
}

.ki-news-card__body {
    padding: 28px 24px;
}

.ki-news-card__date {
    font-size: 0.72rem;
    color: var(--silver);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ki-news-card__date i {
    margin-right: 4px;
}

.ki-news-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white-pure);
    margin: 0 0 12px;
    line-height: 1.4;
}

.ki-news-card__excerpt {
    font-size: 0.83rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.7;
    margin: 0 0 20px;
}

.ki-news-card__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ki-news-card__read {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--silver);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--t-fast), color var(--t-fast);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
}

.ki-news-card__read:hover,
.ki-news-card__read:focus-visible {
    gap: 14px;
    color: var(--silver-light);
}

/* --------------------------------------------------------------------------
   19. MODAL ARTICLE
   -------------------------------------------------------------------------- */

.ki-modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9998;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 20px;
}

.ki-modal-backdrop.open {
    display: flex;
}

.ki-modal {
    background: var(--black-card);
    border: 1px solid rgba(210, 209, 209, 0.2);
    border-radius: 4px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.35s ease;
    scrollbar-width: thin;
    scrollbar-color: var(--silver) transparent;
}

.ki-modal__img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.ki-modal__body {
    padding: 40px;
}

.ki-modal__date {
    font-size: 0.72rem;
    color: var(--silver);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ki-modal__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white-pure);
    margin: 0 0 20px;
    line-height: 1.3;
}

.ki-modal__divider {
    width: 50px;
    height: 2px;
    background: var(--silver);
    margin-bottom: 24px;
}

.ki-modal__text {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.9;
    margin-bottom: 32px;
}

.ki-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(210, 209, 209, 0.12);
}

.ki-modal__share-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ki-modal__share-label {
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ki-modal__share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--white-pure);
    text-decoration: none;
    transition: all var(--t-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.ki-modal__share-btn:hover,
.ki-modal__share-btn:focus-visible {
    transform: scale(1.15);
    color: var(--white-pure);
    text-decoration: none;
}

.ki-modal__share-btn.fb { background: #1877f2; }
.ki-modal__share-btn.wa { background: #25d366; }
.ki-modal__share-btn.tw { background: #1da1f2; }
.ki-modal__share-btn.li { background: #0a66c2; }
.ki-modal__share-btn.cp {
    background: var(--gray-light);
    border-color: rgba(210, 209, 209, 0.3);
    color: var(--silver);
}

.ki-modal__close {
    background: none;
    border: 1px solid rgba(210, 209, 209, 0.25);
    color: rgba(245, 240, 232, 0.6);
    padding: 8px 20px;
    font-size: 0.8rem;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 2px;
    transition: all var(--t-fast);
}

.ki-modal__close:hover,
.ki-modal__close:focus-visible {
    border-color: var(--silver);
    color: var(--silver-light);
}

/* --------------------------------------------------------------------------
   20. PARTNERS
   -------------------------------------------------------------------------- */

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

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

.ki-partners__overflow {
    overflow: hidden;
}

.ki-partners__track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
    align-items: center;
}

.ki-partners__track img {
    height: 38px;
    opacity: 0.75;
    transition: all var(--t-base);
    flex-shrink: 0;
}

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

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

/* --------------------------------------------------------------------------
   21. CTA / CONTACT FORM
   -------------------------------------------------------------------------- */

.ki-cta {
    padding: var(--section-pad);
    background: var(--black-soft);
}

.ki-cta__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.ki-cta__info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(210, 209, 209, 0.1);
}

.ki-cta__info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(210, 209, 209, 0.1);
    border: 1px solid rgba(210, 209, 209, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    font-size: 1.1rem;
}

.ki-cta__info-label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.4);
    margin-bottom: 4px;
}

.ki-cta__info-value {
    font-weight: 500;
    color: var(--white-pure);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color var(--t-fast);
}

.ki-cta__info-value:hover,
.ki-cta__info-value:focus-visible {
    color: var(--silver);
}

.ki-form {
    background: var(--black-card);
    border: 1px solid rgba(210, 209, 209, 0.12);
    padding: 44px 40px;
}

.ki-form__field {
    margin-bottom: 20px;
}

.ki-form__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ki-form__input,
.ki-form__textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(210, 209, 209, 0.15);
    border-radius: 2px;
    padding: 16px 18px;
    color: var(--white-pure);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--t-base);
}

.ki-form__input:focus,
.ki-form__textarea:focus {
    border-color: var(--silver);
}

.ki-form__input::placeholder,
.ki-form__textarea::placeholder {
    color: rgba(245, 240, 232, 0.3);
}

.ki-form__textarea {
    resize: vertical;
    min-height: 130px;
    font-family: 'DM Sans', sans-serif;
}

.ki-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ki-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ki-form__feedback {
    display: none;
    padding: 14px 18px;
    border-radius: 2px;
    font-size: 0.88rem;
    margin-top: 14px;
}

.ki-form__feedback.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.ki-form__feedback.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.ki-field-error {
    color: #fca5a5;
    font-size: 0.78rem;
    margin-top: 6px;
    padding-left: 4px;
}

/* --------------------------------------------------------------------------
   22. FOOTER
   -------------------------------------------------------------------------- */

.ki-footer {
    background: #000000;
    border-top: 1px solid rgba(210, 209, 209, 0.15);
    margin-top: 0;
}

.ki-footer__main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 24px 50px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
}

.ki-footer__brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-decoration: none;
}

.ki-footer__brand-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ki-footer__brand-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.ki-footer__brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 900;
    color: var(--white-pure);
    line-height: 1;
}

.ki-footer__brand-name span {
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ki-footer__brand-sub {
    font-size: 0.58rem;
    font-weight: 500;
    color: rgba(245, 240, 232, 0.3);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

.ki-footer__desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.45);
    line-height: 1.8;
    margin-bottom: 24px;
}

.ki-footer__socials {
    display: flex;
    gap: 10px;
}

.ki-footer__social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(210, 209, 209, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.75rem;
    text-decoration: none;
    transition: all var(--t-fast);
}

.ki-footer__social:hover,
.ki-footer__social:focus-visible {
    border-color: var(--silver);
    color: var(--silver-light);
    background: rgba(210, 209, 209, 0.08);
}

.ki-footer__col-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white-pure);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(210, 209, 209, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ki-footer__col-title::before {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: var(--silver);
}

.ki-footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ki-footer__link {
    font-size: 0.83rem;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.45);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--t-fast);
}

.ki-footer__link i {
    color: var(--silver);
    font-size: 0.65rem;
    transition: transform var(--t-fast);
}

.ki-footer__link:hover,
.ki-footer__link:focus-visible {
    color: var(--silver-light);
    text-decoration: none;
}

.ki-footer__link:hover i {
    transform: translateX(4px);
}

.ki-footer__newsletter-desc {
    font-size: 0.83rem;
    color: rgba(245, 240, 232, 0.45);
    line-height: 1.7;
    margin: 0 0 16px;
}

.ki-footer__newsletter-form {
    margin-top: 4px;
}

.ki-footer__newsletter-input-wrap {
    display: flex;
    gap: 0;
    border: 1px solid rgba(210, 209, 209, 0.2);
}

.ki-footer__newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    outline: none;
    padding: 12px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.83rem;
    color: var(--white-pure);
    transition: background var(--t-fast);
    width: 100%;
    min-width: 0;
}

.ki-footer__newsletter-input:focus {
    background: rgba(210, 209, 209, 0.06);
}

.ki-footer__newsletter-input::placeholder {
    color: rgba(245, 240, 232, 0.25);
}

.ki-footer__newsletter-btn {
    background: var(--silver);
    color: var(--black);
    border: none;
    padding: 12px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--t-fast);
    white-space: nowrap;
}

.ki-footer__newsletter-btn:hover,
.ki-footer__newsletter-btn:focus-visible {
    background: var(--silver-light);
}

.ki-footer__newsletter-msg {
    font-size: 0.78rem;
    margin-top: 8px;
    display: none;
}

.ki-footer__newsletter-msg.success { color: #86efac; }
.ki-footer__newsletter-msg.error   { color: #fca5a5; }

.ki-footer__bottom {
    background: var(--black);
    border-top: 1px solid rgba(210, 209, 209, 0.08);
}

.ki-footer__bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.ki-footer__copy {
    font-size: 0.75rem;
    color: rgba(245, 240, 232, 0.25);
    letter-spacing: 0.5px;
}

.ki-footer__copy span {
    color: var(--silver);
}

.ki-footer__bottom-links {
    display: flex;
    gap: 20px;
}

.ki-footer__bottom-link {
    font-size: 0.72rem;
    color: rgba(245, 240, 232, 0.25);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color var(--t-fast);
}

.ki-footer__bottom-link:hover,
.ki-footer__bottom-link:focus-visible {
    color: var(--silver-light);
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   23. BACK TO TOP
   -------------------------------------------------------------------------- */

.ki-back-top {
    position: fixed;
    bottom: 110px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--silver);
    color: var(--black);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: all var(--t-base);
    box-shadow: 0 4px 16px rgba(210, 209, 209, 0.3);
}

.ki-back-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.ki-back-top:hover,
.ki-back-top:focus-visible {
    background: var(--silver-light);
    transform: translateY(-3px);
    color: var(--black);
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   24. MODAL ABLEVI
   -------------------------------------------------------------------------- */

.ki-ablevi-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 20px;
}

.ki-ablevi-modal.open {
    display: flex;
}

.ki-ablevi-modal__box {
    background: var(--black-card);
    border: 1px solid rgba(210, 209, 209, 0.25);
    border-radius: 4px;
    padding: 52px 44px;
    text-align: center;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: ableviModalIn 0.35s ease;
}

.ki-ablevi-modal__rocket {
    font-size: 3rem;
    margin-bottom: 20px;
}

.ki-ablevi-modal__title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--silver);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.ki-ablevi-modal__divider {
    width: 48px;
    height: 2px;
    background: var(--silver);
    margin: 0 auto 20px;
}

.ki-ablevi-modal__text {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
    margin-bottom: 32px;
}

.ki-ablevi-modal__close {
    background: var(--silver);
    color: var(--black);
    border: none;
    padding: 13px 38px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--t-base);
}

.ki-ablevi-modal__close:hover,
.ki-ablevi-modal__close:focus-visible {
    background: var(--silver-light);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   25. ANIMATIONS
   -------------------------------------------------------------------------- */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroZoom {
    from { transform: scale(1.06); }
    to   { transform: scale(1.12); }
}

@keyframes bounceScroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes ableviModalIn {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

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

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

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

.ki-reveal-delay-1 { transition-delay: 0.1s; }
.ki-reveal-delay-2 { transition-delay: 0.2s; }
.ki-reveal-delay-3 { transition-delay: 0.3s; }
.ki-reveal-delay-4 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   26. RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .ki-about__inner,
    .ki-cafe__inner,
    .ki-founder__inner,
    .ki-cta__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ki-about__img-badge {
        right: 20px;
    }

    .ki-why__header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ki-why__grid,
    .ki-invest__grid,
    .ki-news__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ki-founder__photo-frame {
        display: none;
    }

    .ki-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 50px 24px 40px;
    }
}

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

    .ki-stats__item:nth-child(2) {
        border-right: none;
    }

    .ki-stats__item:nth-child(3) {
        border-right: 1px solid rgba(210, 209, 209, 0.15);
    }

    .ki-stats__item:nth-child(3),
    .ki-stats__item:nth-child(4) {
        border-top: 1px solid rgba(210, 209, 209, 0.15);
    }

    .ki-products__grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .ki-product-card__desc {
        max-height: 80px;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 575px) {
    .ki-hero__title {
        font-size: 2.4rem;
    }

    .ki-about,
    .ki-products,
    .ki-cafe,
    .ki-why,
    .ki-invest,
    .ki-founder,
    .ki-video,
    .ki-news,
    .ki-cta {
        padding: var(--section-pad-sm);
    }

    .ki-about__img-badge {
        width: 130px;
        height: 130px;
    }

    .ki-about__img-badge strong {
        font-size: 2rem;
    }

    .ki-why__grid,
    .ki-invest__grid,
    .ki-news__grid {
        grid-template-columns: 1fr;
    }

    .ki-form {
        padding: 32px 24px;
    }

    .ki-form__grid {
        grid-template-columns: 1fr;
    }

    .ki-modal__body {
        padding: 28px 22px;
    }

    .ki-footer__main {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 40px 20px 32px;
    }

    .ki-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .ki-footer__bottom-links {
        justify-content: center;
    }

    .ki-back-top {
        bottom: 80px;
        right: 16px;
    }
}
