@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.bc-success-page,
.bc-success-page * {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.bc-success-page {
    --blue: #00609e;
    --deep: #003f6b;
    --navy: #071326;
    --yellow: #fdb712;
    --teal: #01a99e;
    background: #fff;
    color: var(--navy);
    overflow: hidden;
}

/* HERO SECTION */
.bc-about-hero-wrap {
    padding: 0;
    background: #fff;
}

.bc-about-hero {
    position: relative;
    min-height: 440px;
    padding: 70px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 5px solid var(--yellow);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bc-about-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(253, 183, 18, .15), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .12), transparent 25%);
}

.bc-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    margin: auto;
}

.bc-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 16px 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .24);
    color: #fff;
    font-size: clamp(30px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bc-label span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--yellow);
    flex: 0 0 auto;
}

.bc-wrap {
    max-width: 1180px;
    margin: auto;
    padding: 0 22px;
}

/* LOGO MARQUEE */
.bc-logo-marquee-section {
    padding: 34px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(253, 183, 18, .18), transparent 24%),
        radial-gradient(circle at 90% 70%, rgba(1, 169, 158, .20), transparent 26%),
        linear-gradient(135deg, var(--deep) 0%, var(--blue) 55%, var(--teal) 100%);
    overflow: hidden;
    border-bottom: 5px solid var(--yellow);
}

.bc-marquee-heading {
    text-align: center;
    color: #fff;
    margin-bottom: 26px;
}

.bc-marquee-heading span {
    display: inline-flex;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.bc-marquee-heading h2 {
    margin: 14px 0 0;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.15;
    font-weight: 800;
}

.bc-marquee-outer {
    position: relative;
    overflow: hidden;
}

.bc-marquee-outer:before,
.bc-marquee-outer:after {
    content: "";
    position: absolute;
    top: 0;
    width: 110px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.bc-marquee-outer:before {
    left: 0;
    background: linear-gradient(90deg, var(--deep), transparent);
}

.bc-marquee-outer:after {
    right: 0;
    background: linear-gradient(270deg, var(--teal), transparent);
}

.bc-marquee-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: bcMarquee 34s linear infinite;
}

.bc-logo-pill {
    width: 165px;
    height: 90px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .45);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    flex: 0 0 auto;
    transition: .25s ease;
}

.bc-logo-pill:hover {
    transform: translateY(-5px) scale(1.03);
}

.bc-logo-pill img {
    max-width: 132px;
    max-height: 60px;
    object-fit: contain;
}

@keyframes bcMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* PROOF STRIP */
.bc-proof-strip {
    padding: 46px 0;
    background: #fff;
}

.bc-proof-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: center;
}

.bc-proof-text h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 3.8vw, 48px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.bc-proof-text p {
    margin: 0;
    color: #4a5b6c;
    font-size: 16px;
    line-height: 1.75;
}

.bc-proof-box {
    background: #f4f9fc;
    border: 1px solid #d9eaf4;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(0, 70, 110, .08);
}

.bc-proof-box strong {
    display: block;
    color: var(--blue);
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
}

.bc-proof-box span {
    display: block;
    margin-top: 8px;
    color: #071326;
    font-weight: 700;
}

/* FULL IMAGE BANNER */
.bc-image-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bc-image-banner:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 24%, rgba(253, 183, 18, .18), transparent 25%),
        radial-gradient(circle at 86% 28%, rgba(1, 169, 158, .20), transparent 28%);
}

.bc-image-banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 22px;
    color: #fff;
}

.bc-image-banner-content span {
    display: inline-flex;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 16px;
}

.bc-image-banner-content h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 4.6vw, 58px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1px;
}

.bc-image-banner-content p {
    margin: 16px auto 0;
    max-width: 680px;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    line-height: 1.65;
}

/* FEATURED SLIDER */
.bc-featured {
    padding: 56px 0;
    background:
        radial-gradient(circle at 8% 18%, rgba(253, 183, 18, .16), transparent 24%),
        radial-gradient(circle at 92% 70%, rgba(1, 169, 158, .18), transparent 26%),
        linear-gradient(135deg, var(--deep) 0%, var(--blue) 58%, var(--teal) 100%);
    overflow: hidden;
    color: #fff;
}

.bc-featured .bc-section-title span {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    color: #fff;
}

.bc-featured .bc-section-title h2 {
    color: #fff !important;
}

.bc-featured .bc-section-title p {
    color: rgba(255, 255, 255, .90) !important;
}

.bc-section-title {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 30px;
}

.bc-section-title span {
    display: inline-flex;
    padding: 9px 18px;
    border-radius: 999px;
    background: #fff4bf;
    border: 1px solid rgba(255, 194, 14, .55);
    color: #071326;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.bc-section-title h2 {
    margin: 0 0 14px;
    color: #071326;
    font-size: clamp(30px, 3.8vw, 46px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.8px;
}

.bc-section-title p {
    margin: 0;
    color: #4a5b6c;
    font-size: 16px;
    line-height: 1.7;
}

.bc-slider-window {
    position: relative;
    overflow: hidden;
    padding: 8px 0 12px;
}

.bc-slider-window:before,
.bc-slider-window:after {
    content: "";
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.bc-slider-window:before {
    left: 0;
    background: linear-gradient(90deg, var(--deep), rgba(0, 63, 107, 0));
}

.bc-slider-window:after {
    right: 0;
    background: linear-gradient(270deg, var(--teal), rgba(1, 169, 158, 0));
}

.bc-feature-slider {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: bcClientSlide 38s linear infinite;
}

.bc-slider-window:hover .bc-feature-slider {
    animation-play-state: paused;
}

.bc-feature-card {
    position: relative;
    width: 360px;
    min-height: 352px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .14);
    transition: .25s ease;
    overflow: hidden;
    flex: 0 0 auto;
}

.bc-feature-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--yellow);
}

.bc-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 54px rgba(0, 0, 0, .20);
}

.bc-client-logo {
    width: 150px;
    height: 82px;
    border-radius: 18px;
    background: #fff9d8;
    border: 1px solid rgba(255, 194, 14, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    margin-bottom: 22px;
}

.bc-client-logo img {
    max-width: 120px;
    max-height: 58px;
    object-fit: contain;
}

.bc-feature-card small {
    display: block;
    color: #00609e;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bc-feature-card h3 {
    margin: 0 0 12px;
    color: #071326;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.4px;
}

.bc-feature-card p {
    margin: 0 0 18px;
    color: #4a5b6c;
    font-size: 15px;
    line-height: 1.65;
}

.bc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.bc-tags span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff4bf;
    border: 1px solid rgba(255, 194, 14, .55);
    color: #071326;
    font-size: 12px;
    font-weight: 700;
}

@keyframes bcClientSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CTA */
.bc-success-cta {
    padding: 48px 0;
    background: #fff;
}

.bc-cta-box {
    background:
        radial-gradient(circle at 10% 20%, rgba(253, 183, 18, .18), transparent 25%),
        linear-gradient(135deg, var(--deep) 0%, var(--blue) 62%, var(--teal) 100%);
    border-radius: 32px;
    padding: 42px 32px;
    text-align: center;
    color: #fff;
    border-bottom: 6px solid var(--yellow);
    box-shadow: 0 24px 60px rgba(0, 70, 110, .18);
}

.bc-cta-box h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 800;
}

.bc-cta-box p {
    margin: 0 auto 26px;
    max-width: 720px;
    font-size: 16px;
    line-height: 1.7;
    opacity: .94;
}

.bc-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 30px;
    border-radius: 999px;
    background: var(--yellow);
    color: #071326;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .16);
    transition: .25s ease;
}

.bc-cta-btn:hover {
    transform: translateY(-3px);
    background: #fff;
}

@media(max-width: 768px) {
    .bc-about-hero-wrap {
        padding: 32px 12px 34px;
    }

    .bc-about-hero {
        min-height: 450px;
        padding: 42px 14px;
    }

    .bc-label {
        font-size: clamp(34px, 11vw, 48px);
        padding: 16px 24px;
        gap: 12px;
    }

    .bc-label span {
        width: 13px;
        height: 13px;
    }

    .bc-logo-pill {
        width: 138px;
        height: 78px;
    }

    .bc-logo-pill img {
        max-width: 112px;
    }

    .bc-proof-grid {
        grid-template-columns: 1fr;
    }

    .bc-image-banner {
        min-height: 350px;
    }

    .bc-featured {
        padding: 48px 0;
    }

    .bc-feature-card {
        width: 305px;
        min-height: 390px;
        padding: 24px;
    }

    .bc-slider-window:before,
    .bc-slider-window:after {
        width: 36px;
    }

    .bc-cta-box {
        padding: 34px 20px;
        border-radius: 24px;
    }
}

@media(max-width: 390px) {
    .bc-about-hero {
        min-height: 430px;
    }

    .bc-label {
        font-size: 34px;
        padding: 14px 20px;
    }

    .bc-feature-card {
        width: 285px;
    }
}
