/* About page hero — mosaic on the right, bottom-aligned with trust pills. */

.about-hero__mosaic {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

@media (min-width: 1024px) {
    .about-hero__mosaic {
        justify-content: flex-end;
    }

    /* Pills define the baseline — no extra gap below them */
    #about-hero .about-hero__chips {
        margin-bottom: 0;
    }

    .about-hero__layout {
        grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
        gap: 2rem;
        align-items: end;
    }

    .about-hero__copy {
        max-width: none;
        padding-right: 0.5rem;
    }
}

.about-hero__mosaic .about-unique__mosaic {
    position: relative;
    top: auto;
    width: 26rem;
    max-width: 100%;
    min-height: 0;
    transform: scale(1);
    transform-origin: right bottom;
}

.about-hero__mosaic .about-unique__figure--main {
    max-width: 78%;
}

@media (min-width: 640px) {
    .about-hero__mosaic .about-unique__mosaic {
        width: 28rem;
    }
}

@media (min-width: 1024px) {
    .about-hero__mosaic .about-unique__mosaic {
        width: 31rem;
        margin-left: auto;
        margin-right: 0;
    }
}

.about-hero__mosaic .about-unique__figure--accent {
    border-color: rgb(255 255 255 / 0.18);
}

.about-hero__mosaic .about-unique__badge {
    left: 58%;
    top: 12%;
    right: auto;
}

.about-unique__intro .about-unique__lede {
    margin-top: 1rem;
}

.about-unique__body .about-unique__tagline {
    margin: 0;
}

/* Who we are — profile card left, body copy right */
.about-unique__layout {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .about-unique__layout {
        grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
        gap: 3rem;
        align-items: stretch;
    }
}

.about-unique__profile {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

@media (min-width: 1024px) {
    .about-unique__profile {
        position: sticky;
        top: 6rem;
        align-self: start;
    }
}

.about-unique__profile-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    width: 100%;
    gap: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 18px 48px -28px rgba(15, 23, 42, 0.18);
}

.about-unique__profile-photo {
    position: relative;
    margin: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    min-height: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.about-unique__profile-photo--secondary {
    border-top: 1px solid #e2e8f0;
}

@media (min-width: 1024px) {
    .about-unique__profile-photo {
        aspect-ratio: 5 / 3;
    }
}

.about-unique__profile-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-unique__profile-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 2rem 1rem 0.95rem;
    background: linear-gradient(
        180deg,
        rgb(15 23 42 / 0) 0%,
        rgb(15 23 42 / 0.55) 42%,
        rgb(15 23 42 / 0.88) 100%
    );
    text-align: left;
}

.about-unique__profile-name {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

.about-unique__profile-role {
    margin: 0.3rem 0 0;
    font-size: 0.625rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.82);
}

.about-unique__profile-ctas {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.6rem;
    width: 100%;
    padding: 0;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .about-unique__profile-ctas {
        margin-top: auto;
    }
}

.about-unique__profile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex: 1 1 calc(50% - 0.3rem);
    min-width: 0;
    border-radius: 9999px;
    padding: 0.72rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.about-unique__profile-cta--primary {
    background: #00a8e8;
    color: #fff;
}

.about-unique__profile-cta--primary:hover {
    background: #0098d1;
}

.about-unique__profile-cta--whatsapp {
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #0f172a;
}

.about-unique__profile-cta--whatsapp:hover {
    border-color: #25d366;
    color: #128c7e;
}
