/* ============================= */
/* RESET */
/* ============================= */
body{
    margin:0;
    font-family:'Segoe UI',sans-serif;
    background:#f5f7fb;
}

/* ============================= */
/* CONTAINER */
/* ============================= */
.container{
    max-width:1100px;
    margin:auto;
    padding:20px;
}

/* ============================= */
/* HERO */
/* ============================= */
.hero{
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('https://images.unsplash.com/photo-1498050108023-c5249f4df085');
    background-size:cover;
    background-position:center;
    color:white;
    padding:60px 15px;
    text-align:center;
}

/* ============================= */
/* HERO TEXT */
/* ============================= */
.hero-title{
    font-size:45px;
    font-weight:900;
    margin-bottom:15px;
}

.hero-title span{
    color:#ffd700;
    display:block;
}

.hero-subtitle{
    font-size:20px;
    max-width:700px;
    margin:auto;
}

/* ============================= */
/* BUTTON HIGH CONVERTING */
/* ============================= */
.btn-primary,
.btn-wa{
    display:inline-block;
    padding:14px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    font-size:15px;
    transition:all 0.25s ease;
    margin:5px;
}

/* PRIMARY (ORANGE CTA) */
.btn-primary{
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    color:white;
    box-shadow:0 8px 20px rgba(255,122,0,0.4);
}

/* WA BUTTON */
.btn-wa{
    background:#25D366;
    color:white;
    box-shadow:0 8px 20px rgba(37,211,102,0.4);
}

/* HOVER EFFECT */
.btn-primary:hover,
.btn-wa:hover{
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 12px 30px rgba(0,0,0,0.25);
}

/* CLICK EFFECT */
.btn-primary:active,
.btn-wa:active{
    transform:scale(0.97);
}

/* ============================= */
/* BUTTON APPROVE */
/* ============================= */
.btn-approve{
    background:#007bff;
    color:white;
    padding:8px 14px;
    border-radius:6px;
    text-decoration:none;
    font-size:14px;
    margin-left:5px;
    display:inline-block;
}

.btn-approve:hover{
    background:#0056b3;
}

/* ============================= */
/* CARD */
/* ============================= */
.card{
    background:white;
    padding:20px;
    border-radius:15px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

/* ============================= */
/* DASHBOARD */
/* ============================= */
.wrapper{
    display:flex;
}

/* SIDEBAR */
.sidebar{
    width:240px;
    height:100vh;
    position:fixed;
    background:linear-gradient(180deg,#1e3c72,#2a5298);
    color:white;
    padding:20px;
}

.sidebar h2{
    text-align:center;
    margin-bottom:30px;
}

.sidebar a{
    display:block;
    color:white;
    padding:12px;
    margin-bottom:10px;
    border-radius:8px;
    text-decoration:none;
}

.sidebar a:hover{
    background:rgba(255,255,255,0.15);
}

/* MAIN */
.main{
    margin-left:260px;
    padding:30px;
}

/* TOPBAR */
.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

/* ============================= */
/* GRID STAT */
/* ============================= */
.grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:30px;
}

.stat-card{
    background:white;
    padding:20px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

.stat-card:hover{
    transform:translateY(-5px);
}

.stat-card h3{
    font-size:16px;
    color:#777;
}

.stat-card h1{
    font-size:32px;
}

/* ============================= */
/* TABLE */
/* ============================= */
.table-box{
    background:white;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.table{
    width:100%;
    border-collapse:collapse;
    margin-top:15px;
}

.table th{
    text-align:left;
    padding:12px;
    color:#555;
}

.table td{
    padding:12px;
    border-top:1px solid #eee;
    vertical-align:middle;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

/* TABLET */
@media (max-width:992px){
    .grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* HP */
@media (max-width:768px){

    .grid{
        grid-template-columns:1fr;
    }

    .sidebar{
        position:relative;
        width:100%;
        height:auto;
    }

    .main{
        margin-left:0;
        padding:15px;
    }

    .table-box{
        overflow-x:auto;
    }

    .hero-title{
        font-size:32px;
    }

}

/* ============================= */
/* COPY BUTTON */
/* ============================= */
.btn-copy {
    background: #3b82f6;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    margin: 2px;
}

.btn-copy:hover {
    background: #2563eb;
}

/* CENTER PREMIUM TEXT */
.premium-section{
    text-align:center;
}

/* LIST TETAP RAPI */
.problem-list,
.solution-list{
    display:inline-block;
    text-align:left;
    margin:auto;
}

/* ITEM */
.problem-item,
.solution-item{
    display:block;
}

.problem-list,
.solution-list{
    max-width:500px;
}

/* ================= BENEFIT PREMIUM ================= */

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:20px;
}

.benefit-card{
    background:white;
    padding:20px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.benefit-card:hover{
    transform:translateY(-5px);
}

.benefit-card .icon{
    font-size:28px;
    margin-bottom:10px;
}

.benefit-card h3{
    margin-bottom:5px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .benefit-grid{
        grid-template-columns:1fr;
    }
}

/* ================= FORM PREMIUM ================= */

.form-premium{
    max-width:700px;
    margin:auto;
}

.form-group{
    display:flex;
    gap:15px;
}

.form-premium input{
    width:95%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:14px;
}

.btn-premium{
    width:100%;
    padding:16px;
    margin-top:10px;
    background:linear-gradient(135deg,#ff7a00,#ffb347);
    border:none;
    border-radius:12px;
    color:white;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.btn-premium:hover{
    transform:scale(1.03);
}

.form-note{
    text-align:center;
    color:#888;
    font-size:12px;
    margin-top:10px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .form-group{
        flex-direction:column;
    }
}

/* CENTER FORM HEADER */
.premium-card .title,
.premium-card .subtitle{
    text-align:center;
}

/* ================= STICKY WHATSAPP FINAL ================= */

.sticky-wa{
    position:fixed;
    bottom:20px;
    left:20px;
    z-index:9999;
}

.sticky-wa a{
    display:flex;
    align-items:center;
    gap:8px;

    background:#25D366;
    color:white !important;
    padding:12px 18px;
    border-radius:50px;
    text-decoration:none !important;
    font-weight:bold;
    font-size:14px;

    box-shadow:0 8px 25px rgba(0,0,0,0.25);
    transition:all 0.3s ease;
}

/* HOVER */
.sticky-wa a:hover{
    transform:translateY(-3px) scale(1.05);
}

/* ANIMASI MASUK */
.sticky-wa{
    animation:fadeInUp 0.6s ease;
}

@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}