/* ==========================================================================
   EASY3D — Home Page Stylesheet (Refined Glassmorphism CTA Banner)
   ========================================================================== */

/* Hero Trust Badges */
.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.45rem 0.85rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    user-select: none;
}

.hero-trust-item:hover {
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(0, 229, 255, 0.04);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.hero-trust-item i {
    font-size: 0.9rem;
}

.hero-trust-item strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* Final Action CTA Banner Section */
.cta-banner-section {
    padding: 2rem 1.5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

.cta-banner {
    position: relative;
    padding: 3.2rem 2.2rem 2.6rem;
    border-radius: 28px;
    text-align: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    background-image: radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.08) 0%, rgba(179, 136, 255, 0.04) 45%, transparent 75%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), inset 0 0 35px rgba(0, 229, 255, 0.02);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-banner:hover {
    border-color: rgba(0, 229, 255, 0.25);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 255, 0.08);
}

.cta-ambient-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.cta-glow-left {
    top: -60px;
    left: -60px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.35), transparent 70%);
}

.cta-glow-right {
    bottom: -60px;
    right: -60px;
    background: radial-gradient(circle, rgba(179, 136, 255, 0.35), transparent 70%);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-title {
    font-size: 2.35rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.9rem;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.cta-banner-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.cta-perks-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    font-size: 0.84rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.cta-perk-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cta-perk-item i {
    font-size: 0.8rem;
}

.cta-perk-divider {
    opacity: 0.3;
}

@media (max-width: 768px) {
    .hero-trust-row {
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.4rem;
        width: 100%;
    }
    .hero-trust-item {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
    .cta-banner-section {
        padding: 1.5rem 1rem 3rem;
    }
    .cta-banner {
        padding: 2.4rem 1.2rem 2rem;
        border-radius: 22px;
    }
    .cta-banner-title {
        font-size: 1.55rem;
        margin-bottom: 0.75rem;
    }
    .cta-banner-sub {
        font-size: 0.88rem;
        margin-bottom: 1.6rem;
    }
    .cta-banner-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 1.3rem;
    }
    .cta-banner-buttons a {
        width: 100%;
        max-width: 290px;
        box-sizing: border-box;
    }
    .cta-perks-row {
        flex-direction: column;
        gap: 0.45rem;
        font-size: 0.8rem;
    }
    .cta-perk-divider {
        display: none;
    }
}
