:root {
    --neon-grad: linear-gradient(135deg, #a1ff5a 0%, #4efdc4 100%);
    --shadow-3d: 0 20px 40px rgba(0,0,0,0.06), 0 5px 15px rgba(0,0,0,0.03);
    --shadow-lux: 0 30px 60px rgba(161, 255, 90, 0.1);
}

.features-section {
    padding: 100px 0;
    background: #fdfdfd;
}

/* HEADLINE SCALING */
.headline-lux-center {
    font-size: 2.8rem;
    font-weight: 800;
    color: #030923;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

/* LUXURY CARD WRAPPER (IDENTIK REFERENSI) */
.feat-card-3d {
    background: #ffffff;
    border-radius: 45px; /* Full Curved */
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: var(--shadow-3d);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.feat-card-3d:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: var(--shadow-lux);
    border-color: #a1ff5a;
}

/* IMAGE AREA WITH CURVE */
.feat-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.feat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.feat-card-3d:hover .feat-img-wrapper img {
    transform: scale(1.1);
}

/* CONTENT BOX (FLOATING OVERLAP) */
.feat-content-lux {
    padding: 30px;
    text-align: center;
    background: #fff;
    margin-top: -40px; /* Overlap effect */
    border-radius: 45px 45px 0 0;
    position: relative;
    z-index: 10;
    flex-grow: 1;
}

/* UNIFIED PREMIUM TAGS (Hapus warna-warni) */
.tag-container-lux {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.tag-pill-lux {
    background: #f8fafc;
    border: 1px solid #eee;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feat-card-3d:hover .tag-pill-lux {
    background: #f0fdf4;
    color: #16a34a;
    border-color: #dcfce7;
}

/* TYPOGRAPHY */
.feat-title-lux {
    font-size: 1.3rem;
    font-weight: 800;
    color: #030923;
    line-height: 1.3;
    margin-bottom: 15px;
}

.feat-desc-lux {
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.6;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .headline-lux-center { font-size: 2rem; }
    .features-section { padding: 60px 15px; }
    .feat-img-wrapper { height: 220px; }
}