﻿.fx-intro {
    background: #fff;
    padding: 56px 0 32px;
}

.fx-intro-title {
    text-align: center;
    font-weight: 800;
    line-height: 1.15;
    font-size: 2.1rem;
    color: #111;
    margin-bottom: 22px;
}

.fx-intro-pills {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.fx-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 999px;
    background: #f6f0f6;
    border: 1px solid rgba(107,15,88,0.12);
    min-width: 230px;
}

.fx-pill-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(107,15,88,0.14);
    color: #6b0f58;
    font-size: 16px;
}

.fx-pill-title {
    font-weight: 800;
    font-size: 0.92rem;
    color: #111;
    line-height: 1.1;
}

.fx-pill-sub {
    font-size: 0.8rem;
    color: rgba(0,0,0,0.55);
    line-height: 1.1;
}

/* tighten on small screens */
@media (max-width: 575.98px) {
    .fx-intro {
        padding: 44px 0 24px;
    }

    .fx-intro-title {
        font-size: 1.7rem;
    }

    .fx-pill {
        min-width: 100%;
        justify-content: center;
    }
}

/**/
.fx-about-block {
    background: #fff;
    padding: 34px 0 70px;
}

.fx-about-card {
    background: #f6f7f9;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    overflow: hidden;
}

.fx-about-topline {
    height: 4px;
    background: linear-gradient(90deg, #6b0f58 0%, #00b3a6 50%, #6b0f58 100%);
}

.fx-about-body {
    padding: 40px 46px;
}

    .fx-about-body p {
        color: rgba(17, 24, 39, 0.78);
        font-size: 0.98rem;
        line-height: 1.85;
        margin-bottom: 22px;
    }

.fx-about-link {
    color: #00b3a6;
    text-decoration: underline;
    text-underline-offset: 3px;
}

    .fx-about-link:hover {
        color: #009b90;
    }

/* responsive */
@media (max-width: 991.98px) {
    .fx-about-body {
        padding: 28px 22px;
    }
}

/***/
.fx-video-section {
    padding: 56px 0 72px;
    background: #fff;
}

/* keeps aspect ratio and centers */
.fx-video-wrapper {
    position: relative;
    max-width: 1100px; /* matches your screenshot width */
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

    /* 16:9 ratio */
    .fx-video-wrapper::before {
        content: "";
        display: block;
        padding-top: 56.25%;
    }

    .fx-video-wrapper iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* mobile */
@media (max-width: 575.98px) {
    .fx-video-section {
        padding: 40px 0 56px;
    }
}
