/* =========================================
   PREMIUM FEATURE SHOWCASE 💎
   Premium Redesign
   ========================================= */

.premium-showcase {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(124, 77, 255, 0.05) 0%, transparent 80%);
}

.premium-showcase .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.premium-showcase .section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-white, #fff);
    margin-top: 16px;
}

.premium-showcase .section-title .highlight {
    background: linear-gradient(135deg, #FFD700 0%, #D4F458 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SHOWCASE BENTO LAYOUT ===== */
.showcase-bento {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.showcase-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
}

.showcase-col.left {
    text-align: right;
}

.showcase-col.right {
    text-align: left;
}

/* ===== CENTER PHONE MOCKUP ===== */
.showcase-center {
    flex: 1.2;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.phone-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
}

.phone-mockup {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.8));
    animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250%;
    height: 250%;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    filter: blur(40px);
}

/* ===== GLASS CARDS ===== */
.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatCard 8s ease-in-out infinite;
    animation-delay: var(--float-delay);
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.glass-card:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

/* Card Icon */
.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    transition: all 0.4s ease;
}

.showcase-col.left .card-icon {
    margin-left: auto;
}

/* Accent Colors */
.lime-accent .card-icon {
    background: rgba(212, 244, 88, 0.1);
    color: #D4F458;
    border: 1px solid rgba(212, 244, 88, 0.2);
}

.pink-accent .card-icon {
    background: rgba(236, 72, 153, 0.1);
    color: #EC4899;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.gold-accent .card-icon {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.blue-accent .card-icon {
    background: rgba(68, 138, 255, 0.1);
    color: #448AFF;
    border: 1px solid rgba(68, 138, 255, 0.2);
}

.glass-card:hover .card-icon {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lime-accent:hover .card-icon {
    background: #D4F458;
    color: #000;
}

.pink-accent:hover .card-icon {
    background: #EC4899;
    color: #fff;
}

.gold-accent:hover .card-icon {
    background: #FFD700;
    color: #000;
}

.blue-accent:hover .card-icon {
    background: #448AFF;
    color: #fff;
}

/* Card Content */
.glass-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white, #fff);
    margin-bottom: 12px;
}

.glass-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1100px) {
    .showcase-bento {
        gap: 20px;
    }

    .glass-card {
        padding: 24px;
    }
}

@media (max-width: 992px) {
    .showcase-bento {
        flex-direction: column;
        gap: 60px;
    }

    .showcase-col {
        flex-direction: row;
        width: 100%;
        text-align: center;
        gap: 20px;
    }

    .showcase-col.left,
    .showcase-col.right {
        text-align: center;
    }

    .showcase-col.left .card-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .showcase-center {
        order: -1;
        width: 100%;
    }

    .glass-card {
        flex: 1;
        animation: none;
    }
}

@media (max-width: 768px) {
    .premium-showcase .section-title {
        font-size: 32px;
    }

    .showcase-col {
        flex-direction: column;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .premium-showcase .section-title {
        font-size: 26px;
    }

    .phone-mockup-wrapper {
        max-width: 260px;
    }

    .glass-card {
        padding: 20px;
    }
}