<style>

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#111827;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* NAVBAR */

.navbar{
    background:#031633;
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:999;
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:white;
    font-size:30px;
    font-weight:700;
}

.logo span{
    color:#00a2ff;
}

.menu{
    display:flex;
    gap:35px;
}

.menu a{
    color:white;
    font-weight:500;
    transition:0.3s;
}

.menu a:hover{
    color:#00a2ff;
}

.btn-primary{
    background:#007bff;
    color:white;
    padding:13px 24px;
    border-radius:10px;
    display:inline-block;
    transition:0.3s;
}

.btn-primary:hover{
    background:#0056cc;
}



/* HERO */

.hero{
    background:linear-gradient(135deg,#02142e,#042c67);
    color:white;
    padding:20px 0;
}

.hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.hero-left{
    flex:1;
}

.hero-left h1{
    font-size:58px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-left h1 span{
    color:#19b5ff;
}

.hero-left p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    opacity:0.9;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-secondary{
    border:2px solid white;
    color:white;
    padding:13px 24px;
    border-radius:10px;
}

.hero-right{
    flex:1;
}

.dashboard{
    background:white;
    border-radius:20px;
    padding:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.3);
}

.dashboard img{
    width:100%;
}

/* FEATURES */

.section{
    padding:40px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    margin-bottom:15px;
}

.section-title p{
    color:#6b7280;
}

/* PRODUCT */


/* GRID */

.compact-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:22px;
}

/* CARD */

.compact-card{

    background:white;

    border-radius:22px;

    padding:28px;

    border:1px solid #edf2f7;

    transition:0.3s;

    display:flex;
    flex-direction:column;

    min-height:230px;
}

.compact-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 18px 40px rgba(0,0,0,0.08);

    border-color:#dbeafe;
}

/* TOP */

.top-area{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:22px;
}

/* ICON */

.mini-icon{

    width:58px;
    height:58px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;

    font-size:28px;

    flex-shrink:0;
}

.blue{
    background:
    linear-gradient(135deg,#1677ff,#00bfff);
}

.purple{
    background:
    linear-gradient(135deg,#7c4dff,#b388ff);
}

.green{
    background:
    linear-gradient(135deg,#00c853,#69f0ae);
}

.orange{
    background:
    linear-gradient(135deg,#ff9800,#ffcc80);
}

.cyan{
    background:
    linear-gradient(135deg,#00bcd4,#84ffff);
}

.dark{
    background:
    linear-gradient(135deg,#111827,#374151);
}

/* TEXT */

.compact-card h3{

    font-size:20px;

    margin-bottom:8px;

    color:#02142e;
}

.compact-card p{

    color:#6b7280;

    line-height:1.8;

    margin-bottom:25px;
}

/* TAG */

.product-tag{

    background:#eff6ff;

    color:#2563eb;

    padding:7px 14px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;
}

/* LINK */

.compact-card a{

    margin-top:auto;

    color:#1677ff;

    font-weight:600;

    transition:0.3s;
}

.compact-card a:hover{

    transform:translateX(5px);

    color:#0056cc;
}




/* PRODUCT CARD */

.cards{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    border-radius:22px;
    padding:35px 28px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);

    display:flex;
    flex-direction:column;

    min-height:500px;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card h3{
    margin-bottom:18px;
    font-size:28px;
    color:#02142e;
}

.card p{
    color:#6b7280;
    line-height:1.5;
    margin-bottom:25px;
}

/* FEATURE LIST */

.feature-list{
    list-style:none;
    margin-bottom:30px;
}

.feature-list li{
    margin-bottom:14px;
    color:#374151;
}

/* PUSH LINK KE BAWAH */

.product-link{
    margin-top:auto;

    display:inline-block;

    padding-top:25px;

    border-top:
    1px solid #e5e7eb;

    color:#1677ff;

    font-weight:600;

    transition:0.3s;
}

.product-link:hover{
    color:#0056cc;
    transform:translateX(5px);
}



/* CUSTOMER AREA */

.customer-area{
    background:white;
    border-radius:25px;
    padding:50px;
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:40px;
    align-items:center;
    box-shadow:0 5px 25px rgba(0,0,0,0.05);
}

.customer-left h2{
    font-size:38px;
    margin-bottom:20px;
}

.customer-left p{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:25px;
}

.customer-left ul{
    margin-bottom:30px;
}

.customer-left ul li{
    margin-bottom:12px;
    color:#374151;
}


.iframe-wrapper{
    background:#eef3ff;
    border-radius:18px;
    overflow:hidden;
    padding:10px;
}
iframe{
    width:100%;
    height:500px;
    border:none;
    border-radius:15px;
    background:white;
}

/* STATS */

.stats{
    background:#02142e;
    color:white;
    border-radius:25px;
    padding:50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    text-align:center;
}

.stat h3{
    font-size:42px;
    margin-bottom:10px;
    color:#19b5ff;
}

/* FOOTER */

.footer{
    background:#031633;
    color:white;
    padding:50px 0;
    margin-top:80px;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer p{
    opacity:0.8;
}

/* RESPONSIVE */

@media(max-width:991px){

.hero-wrapper{
    flex-direction:column;
}

.customer-area{
    grid-template-columns:1fr;
}

.hero-left h1{
    font-size:42px;
}

.menu{
    display:none;
}

}

@media(max-width:600px){

.hero-left h1{
    font-size:34px;
}

.section-title h2{
    font-size:30px;
}

.customer-left h2{
    font-size:30px;
}

iframe{
    height:350px;
}

}


/* DROPDOWN */

.dropdown{
    position:relative;
}

.dropdown-btn{
    color:white;
    font-weight:500;
    display:block;
    padding:5px 0;
}

.dropdown-content{
    position:absolute;
    top:40px;
    left:0;
    background:white;
    min-width:240px;
    border-radius:14px;
    overflow:hidden;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:0.3s;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.dropdown-content a{
    display:block;
    padding:15px 20px;
    color:#111827;
    border-bottom:1px solid #f1f1f1;
    transition:0.3s;
}

.dropdown-content a:hover{
    background:#f5f7fb;
    color:#007bff;
}

.dropdown:hover .dropdown-content{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}


.product-icon{
    width:75px;
    height:75px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    font-size:32px;
    color:white;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.product-icon.blue{
    background:linear-gradient(135deg,#1677ff,#00bfff);
}

.product-icon.green{
    background:linear-gradient(135deg,#00c853,#69f0ae);
}

.product-icon.orange{
    background:linear-gradient(135deg,#ff9800,#ffcc80);
}

.product-icon.purple{
    background:linear-gradient(135deg,#7c4dff,#b388ff);
}

.product-icon.cyan{
    background:linear-gradient(135deg,#00bcd4,#84ffff);
}
</style>
