.hero-figma__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
    z-index: 2;
    position: relative;
}

.hero-figma__title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-figma__text {
    font-size: 1.1rem;
    max-width: 400px;
}

.hero-figma__terms {
    font-size: 0.9rem;
    opacity: 0.7;
    width: 100%;
    text-align: center;
}

.hero-figma__image-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    overflow: hidden;
}

.hero-figma__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-v2 {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card-v2__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
    height: 450px;
    overflow: hidden;
    border-radius: 10px;
}

.card-v2:hover .card-v2__bg {
    transform: scale(1.05) translateX(-10px);
}

.card-v2::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(212 219 224) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 2;
}

.card-v2__content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 60%;
    margin-bottom: 55px;
}

.card-v2__title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #161616;
}

.card-v2__text {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 80%;
    color: #161616;
}

.hero-cta {
    position: relative;
    background-image: url('/assets/hfappnew/websites/landing-pages/templates/2025/ppc-landing-pages/images/live-account/desktop-footer.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 550px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.25) 60%, transparent 100%);
    z-index: 1;
}

.hero-cta__content {
    position: relative;
    z-index: 2;
}

.hero-cta__title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-cta__terms {
    opacity: 0.8;
    width: 100%;
    text-align: center;
}

.hero-cta h2, .hero-cta__terms {
    color: #fff;
}

.hero-figma {
    background-image: url('/assets/hfappnew/websites/landing-pages/templates/2025/ppc-landing-pages/images/live-account/desktop-main.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 90vh;
    position: relative;
}

.hero-figma .container {
    position: relative;
    z-index: 1;
}

.hero-anniversary {
    position: relative;
    background-image: url('/assets/hfappnew/websites/landing-pages/templates/2025/ppc-landing-pages/images/desktop-15-bg.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero-anniversary__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 90%);
    z-index: 1;
}

.hero-anniversary__content {
    position: relative;
    z-index: 2;
}

.hero-anniversary__title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero-anniversary__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 1.2rem 1.5rem;
}

.stat-box {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    min-height: 90px;
    transition: background 0.3s ease;
}

.bg-gray {
    background: #F4F4F4;
}

.text-gray {
    color: #BEBEBE;
}

.btn-dark:hover {
    background-color: #343639;
}

.stat-icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.btn-wrapper {
    width: 300px;
    text-align: center;
}

.text-uppercase-none {
    text-transform: none !important;
}

.bg-light-lp {
    background: #d4dbe0;
}

.sofia-font {
    font-family: "Sofia Sans Condensed", sans-serif !important;
}

@media (max-width: 1199px) {
    .hero-figma {
        min-height: 100%;
    }
}

@media (max-width: 991.98px) {

    .hero-figma {
        flex-direction: column;
        position: relative;
        min-height: 100%;
    }

    .hero-figma__content {
        order: 1;
        position: relative;
        z-index: 2;
        width: 100%;
        text-align: center;
        padding: 2rem 1rem;
        min-height: 200px;
    }

    .hero-figma__image-wrap {
        order: 2;
        position: relative;
        width: 100%;
        height: auto;
        z-index: 1;
        margin-top: 1.5rem;
    }

    .hero-figma__image {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .hero-figma__image-wrap,
    .hero-figma__image {
        position: static !important;
    }

    .hero-figma__title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-figma__text {
        max-width: 90%;
        margin: 0 auto 1rem;
    }

    .hero-figma__terms {
        font-size: 0.85rem;
    }

    .hero-cta {
        position: relative;
        background-image: url('/assets/hfappnew/websites/landing-pages/templates/2025/ppc-landing-pages/images/live-account/mobile-footer.webp');
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
        min-height: 1110px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        color: #fff;
        overflow: hidden;
        padding-top: 0rem;
        padding-bottom: 9rem;
    }

    .hero-cta h2, .hero-cta__terms {
        color: #161616 !important;
    }

    .hero-cta__content {
        position: relative;
        z-index: 2;
        margin-top: 2rem;
        text-align: left;
    }

    .btn-wrapper {
        width: 100%;
        text-align: center;
    }

    .hero-anniversary {
        background-image: url('/assets/hfappnew/websites/landing-pages/templates/2025/ppc-landing-pages/images/mobile-15-bg.webp');
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
        min-height: 100%;
        padding-top: 4rem;
        padding-bottom: 2rem;
        display: flex;
        align-items: flex-start;
    }

    .hero-anniversary__content {
        margin-top: -2rem;
        text-align: left !important;
    }

    .hero-anniversary__stats {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .stat-box {
        width: 100%;
        max-width: 95%;
        margin: auto;
        justify-content: flex-start;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 10px;
        padding: 1rem 1.2rem;
    }

    .stat-box h3 {
        font-size: 1.2rem;
    }

    .stat-box span {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero-figma {
        min-height: 100%;
    }
    .hero-cta {
        min-height: 1150px;
    }
}

@media (max-width: 767.98px) {
    .hero-figma {
        background-image: url('/assets/hfappnew/websites/landing-pages/templates/2025/ppc-landing-pages/images/live-account/mobile-main.webp');
        min-height: 600px;
    }
}
