/* ---------- MAIN CTA SECTION ---------- */
.cta-section-global {
    background-color: rgb(5, 5, 6);
    padding: var(--section-padding-mobile);
}

@media (min-width: 1024px) {
    .cta-section-global {
        padding: var(--section-padding);
    }
}

.cta-section-global .cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .cta-section-global .cta-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Hero Banner Wrapper */
.cta-banner-global {
    width: 100%;
    margin-bottom: 5rem;
    padding-top: 5rem;
    position: relative;
}

/* Gradient Card */
.cta-card-global {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(to right, #FF00CC, #A020F0);
    padding: 2rem 0.75rem 0 0.75rem;
}

@media (min-width: 1024px) {
    .cta-card-global {
        padding: 3.5rem 2.25rem;
        background: linear-gradient(to left, rgba(10, 10, 12, 0.8), rgba(9, 9, 11, 0)), #A020F0;
    }
}

/* Content Wrapper */
.cta-content-global {
    padding: 0 1rem 2rem 1rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .cta-content-global {
        width: 58.333%;
        padding: 0;
    }
}

.cta-title-global {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    padding-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .cta-title-global {
        font-size: 2.25rem;
    }
}

/* Benefit List */
.benefit-list-global {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 1.5rem;
}

.benefit-item-global {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 500;
    color: white;
}

.benefit-icon-global {
    width: 1.5rem;
    height: 1.5rem;
    fill: white;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.button-group-global {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-white-global {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    color: #09090b;
    transition: background-color 0.2s ease;
    height: 3rem;
}

.btn-white-global:hover {
    background-color: #f5f5f5;
}

.btn-outline-white-global {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    color: white;
    transition: background-color 0.2s ease;
    height: 3rem;
}

.btn-outline-white-global:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Image */
.mobile-image-global {
    display: block;
    width: 100%;
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .mobile-image-global {
        display: none;
    }
}

.mobile-image-global img {
    width: 100%;
    height: auto;
    display: block;
}

/* Desktop Image */
.desktop-image-global {
    display: none;
    position: absolute;
    right: 1.25rem;
    bottom: 0;
    width: 40%;
    min-width: auto;
    z-index: 1;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .desktop-image-global {
        display: block;
    }
}

@media (min-width: 1280px) {
    .desktop-image-global {
        right: 2.5rem;
        width: 30%;
        min-width: 452px;
    }
}

.desktop-image-global img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gradient Overlays */
.gradient-overlay-top-global {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 6rem;
    width: 100%;
    background: linear-gradient(to top, #A020F0, transparent);
    filter: blur(40px);
    backdrop-filter: blur(24px);
    z-index: 1;
    mask-image: linear-gradient(to top, black 20%, rgba(0, 0, 0, 0.8) 50%, transparent);
    -webkit-mask-image: linear-gradient(to top, black 20%, rgba(0, 0, 0, 0.8) 50%, transparent);
}

.gradient-overlay-mobile-global {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 3rem;
    width: 100%;
    background: linear-gradient(to top, #A020F0, transparent);
    z-index: 1;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 20%, black 40%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 20%, black 40%);
}

@media (min-width: 1024px) {
    .gradient-overlay-mobile-global {
        display: none;
    }
}

/* ---------- STATS & AWARDS SECTION ---------- */
.stats-row-global {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .stats-row-global {
        flex-direction: row;
        justify-content: space-between;
        padding-bottom: 2rem;
    }
}

.stats-text-global {
    text-align: center;
}

@media (min-width: 768px) {
    .stats-text-global {
        text-align: left;
    }
}

.stats-title-global {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.stats-subtitle-global {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.stats-numbers-global {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    justify-content: center;
    text-align: center;
}

@media (min-width: 640px) {
    .stats-numbers-global {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .stats-numbers-global {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }
}

.stat-item-global {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-height: 60px;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .stat-item-global {
        min-height: auto;
        padding: 0 1.5rem;
    }
}

.stat-item-center-global {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number-global {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label-global {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.awards-stats-global {
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
}

.awards-row-global {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media (min-width: 768px) {
    .awards-row-global {
        flex-direction: row;
        padding-bottom: 0;
    }
}

.awards-logos-global {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    order: 2;
    overflow-x: hidden;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .awards-logos-global {
        justify-content: flex-start;
        order: 1;
    }
}

.award-logo-global {
    max-width: 25%;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.award-logo-global:hover {
    opacity: 1;
}

@media (min-width: 1024px) {
    .award-logo-global {
        max-width: none;
    }
}

.trustpilot-wrapper-global {
    position: relative;
    order: 1;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .trustpilot-wrapper-global {
        order: 2;
        margin-bottom: 0;
        flex-basis: 420px;
    }
}

.trustpilot-label-global {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
    .trustpilot-label-global {
        text-align: left;
    }
}

.trustpilot-widget-global {
    display: flex;
    align-items: flex-end;
}

/* ---------- MOBILE RESPONSIVE OVERRIDES ---------- */
@media (max-width: 480px) {
    .button-group-global {
        flex-direction: column;
        gap: 0.625rem;
        width: 100%;
    }

    .btn-white-global,
    .btn-outline-white-global {
        width: 100%;
        justify-content: center;
    }

    .cta-title-global {
        font-size: 1.5rem;
        padding-bottom: 1rem;
    }
}