﻿:root {
    --brand: #890147;
    --dark: #191919;
    --ink: #333;
    --bg: #F8F8FB;
}

/* =====================================================
   SCOPE
   ===================================================== */
.lp-about {
    background: var(--bg);
    color: var(--ink);
    padding-top: 90px;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

    /* =====================================================
   HERO
   ===================================================== */
    .lp-about .lp-about-hero {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

        .lp-about .lp-about-hero img {
            display: block;
            width: 100%;
            height: 580px;
        }

        .lp-about .lp-about-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .55) 55%);
            z-index: 1;
        }

        .lp-about .lp-about-hero .content {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 80px 0;
            z-index: 2;
        }

        .lp-about .lp-about-hero h1 {
            font-family: "Chivo", system-ui, sans-serif !important;
            font-weight: 800 !important;
            font-size: clamp(2.2rem, 5vw, 64px) !important;
            line-height: 64px !important;
            margin-bottom: 16px !important;
            color: #fff !important;
        }

        .lp-about .lp-about-hero p {
            font-family: "Chivo", system-ui, sans-serif !important;
            font-weight: 600 !important;
            font-size: clamp(1rem, 1.7vw, 20px) !important;
            line-height: 31px !important;
            margin: 0 !important;
            color: #fff !important;
            max-width: 720px;
        }

    /* =====================================================
   JOURNEY
   ===================================================== */
    .lp-about .lp-about-journey {
        position: relative;
        padding: 72px 0;
        min-height: 520px;
        background: linear-gradient(90deg, #F8F8FB 0%, rgba(248,248,251,.96) 35%, rgba(248,248,251,0) 60%), url('/assets/img/lp_aboutUs_journey.png') right center / contain no-repeat;
    }

        .lp-about .lp-about-journey .img-wrap {
            display: none;
        }

        .lp-about .lp-about-journey h2 {
            color: var(--brand);
            font: 800 40px/1.1 "Inter", system-ui, sans-serif;
            margin-bottom: 20px;
        }

        .lp-about .lp-about-journey p {
            font: 600 20px/1.35 "Inter", system-ui, sans-serif;
            color: #333;
        }

@media (max-width: 991.98px) {
    .lp-about .lp-about-journey {
        background-position: center bottom;
        background-size: cover;
    }
}

/* =====================================================
   MVV 
   ===================================================== */
#about-mvv {
    background: var(--dark);
    padding: 74px 0;
    color: #fff;
}

    #about-mvv .mvv-layout {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 28px;
        align-items: stretch;
    }

    #about-mvv .mvv-left {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    #about-mvv .mvv-title {
        font-family: "Chivo", system-ui, sans-serif !important;
        font-weight: 600;
        line-height: 1.1;
        font-size: clamp(32px, 4vw, 48px);
        color: #fff;
        margin: 0;
    }

    /* ---- GRID cards ---- */
    #about-mvv .mvv-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(300px, 370px));
        grid-template-rows: 1fr 1fr; 
        gap: 31px 28px;
        justify-content: start;
        align-items: stretch;
    }

    #about-mvv .mvv-card {
        background: #F8F8FB;
        border-radius: 12px;
        padding: 28px;
        color: #333;
        box-shadow: 0 0 0 rgba(0,0,0,0);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    #about-mvv .mvv-card__head {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    #about-mvv .mvv-icon {
        width: 48px;
        height: 48px;
        display: block;
    }

    #about-mvv .mvv-card__title {
        text-align: center;
        font-family: "Chivo", system-ui, sans-serif !important;
        font-weight: 600;
        font-size: 28px;
        margin: 0;
        color: #333;
    }

    #about-mvv .mvv-card__text {
        margin: 10px 0 0 0;
        font-family: "Chivo", system-ui, sans-serif !important;
        font-weight: 500;
        font-size: 18px;
        line-height: 1.5;
        text-align: left;
        color: #333;
    }

    #about-mvv .mvv-list {
        margin: 8px 0 0 18px;
        padding: 0;
        font-family: "Chivo", system-ui, sans-serif !important;
        font-weight: 500;
        font-size: 18px;
        line-height: 1.6;
        color: #333;
    }

        #about-mvv .mvv-list li + li {
            margin-top: 10px;
        }

        #about-mvv .mvv-list strong {
            font-weight: 700;
        }


    #about-mvv .mvv-card.mission {
        grid-column: 1;
        grid-row: 1;
    }
    #about-mvv .mvv-card.vision {
        grid-column: 1;
        grid-row: 2;
    }
    #about-mvv .mvv-card.values {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
    #about-mvv .mvv-card.vision {
        width: auto;
        justify-self: stretch;
    }

@media (max-width: 1199.98px) {
    #about-mvv .mvv-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    #about-mvv .mvv-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    #about-mvv .mvv-card.mission,
    #about-mvv .mvv-card.vision,
    #about-mvv .mvv-card.values {
        grid-column: auto;
        grid-row: auto;
        height: auto;
    }
}


/* =====================================================
   METHOD
   ===================================================== */
#about-method {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

    #about-method.container,
    #about-method .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #about-method img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

html, body {
    overflow-x: hidden;
}

/* =====================================================
   CTA
   ===================================================== */
.lp-about-cta {
    position: relative;
    width: 100%;
    background: linear-gradient(90deg, #191919 4%, #890147 100%) !important;
    padding: 10px 0 !important;
    color: #fff;
    overflow: hidden;
}

.about-cta__copy {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.about-cta__title {
    font-family: "Chivo", system-ui, sans-serif !important;
    font-weight: 800;
    font-size: 64px;
    line-height: 64px;
    margin: 0;
    color: #fff;
}

.about-cta__lead {
    max-width: 769px;
    margin: 0;
    font-family: "Chivo", system-ui, sans-serif !important;
    font-weight: 600;
    font-size: 22px;
    line-height: 31px;
    color: #fff;
}

.about-cta__lead--em {
    font-style: italic;
}

.about-cta__btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 14px 32px !important;
    background: #890147 !important;
    border-radius: 27px !important;
    color: #fff !important;
    text-decoration: none !important;
    font-family: "Chivo", system-ui, sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    width: auto !important;
    min-width: unset !important;
    border: 0 !important;
    box-shadow: none !important;
    transition: all 0.2s ease-in-out !important;
    max-width: fit-content !important;
    align-self: flex-start !important;
}

    .about-cta__btn:hover {
        filter: brightness(1.1);
        transform: translateY(-2px);
    }

    .about-cta__btn:active {
        transform: translateY(0) scale(0.98);
    }

.about-cta__earth {
    max-width: 100%;
    height: 100%;
    width: 430px;
    opacity: .35;
}

@media (max-width: 992px) {
    .lp-about-cta {
        padding: 56px 0 !important;
    }

    .about-cta__title {
        font-size: 40px;
        line-height: 44px;
    }

    .about-cta__lead {
        font-size: 18px;
        line-height: 28px;
        max-width: 100%;
    }

    .about-cta__earth {
        width: 340px;
    }
}

@media (max-width: 576px) {
    .about-cta__earth {
        width: 280px;
    }
}

/* ================= GLOBAL FIX ================= */
main {
    display: block;
    padding-top: 10px !important;
}

.pb-3 {
    padding-bottom: 0px !important;
}

#socialsInfo.site-footer.slanted-footer::before {
    content: none !important;
}

#socialsInfo.site-footer {
    background: #191919 !important;
}

    #socialsInfo.site-footer .container {
        padding-top: 60px !important; 
    }

#goTop, .back-to-top, [data-scroll-top] {
    bottom: 1px !important;
}

.site-footer {
    margin-top: 0px !important;
}

#socialsInfo {
    position: relative;
}

    #socialsInfo .smoothscroll.scroll-top {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -25px;
    }