@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap');

:root {
    --neon-grad: linear-gradient(135deg, #a1ff5a 0%, #4efdc4 100%);
    --shadow-lux: 0 15px 35px rgba(0,0,0,0.06), 0 5px 15px rgba(0,0,0,0.03);
    --shadow-3d: 0 20px 40px rgba(161, 255, 90, 0.25);
}

.hero-section {
    padding: 120px 0 60px;
    background: radial-gradient(circle at top right, rgba(161, 255, 90, 0.05), transparent 400px);
}

/* TYPOGRAPHY */
.headline-lux {
    font-size: 3.5rem;
    font-weight: 800;
    color: #030923;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-neon-3d {
    background: var(--neon-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.05));
}

.sub-headline {
    font-size: 1.1rem;
    font-weight: 500;
    color: #64748b;
    max-width: 550px;
    margin-bottom: 40px;
}

/* UNIFIED LUXURY BADGES (No more rainbow) */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.badge-lux-3d {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 800;
    color: #030923;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lux);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-lux-3d::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #a1ff5a;
    border-radius: 50%;
    box-shadow: 0 0 10px #a1ff5a;
}

.badge-lux-3d:hover {
    transform: translateY(-5px);
    border-color: #a1ff5a;
}

/* PREMIUM 3D BUTTONS */
.btn-primary-3d {
    background: var(--neon-grad);
    color: #000 !important;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 20px;
    border: none;
    box-shadow: var(--shadow-3d);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-3d:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(161, 255, 90, 0.4);
}

.btn-outline-3d {
    background: #ffffff;
    color: #030923 !important;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: var(--shadow-lux);
    transition: 0.4s;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-3d:hover {
    background: #f8fafc;
    transform: translateY(-5px);
}

.btn-kenapa {
    background: #fff;
    border: 1px solid #eee;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #64748b;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lux);
}

.btn-kenapa:hover {
    background: #030923;
    color: #fff;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .headline-lux { font-size: 2.2rem; }
    .main-content { text-align: center; }
    .badge-container { justify-content: center; }
    .btn-container { display: flex; flex-direction: column; gap: 15px; }
}