html{
    scroll-behavior: smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
}

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    background:#fff;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 40px;

    border-bottom:1px solid #eee;

    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-icon{
    width:28px;
    height:28px;
    border-radius:50%;
    background:repeating-radial-gradient(circle,
        #FDB813 0px,
        #FDB813 2px,
        transparent 2px,
        transparent 4px);
}

.logo h2{
    font-size:28px;
    color:#17325c;
    font-weight:700;
}

.logo span{
    color:#17325c;
}

.nav-menu{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-menu li a{
    text-decoration:none;
    color:#17325c;
    font-size:15px;
    font-weight:500;
}

.nav-menu li a::after{
    /* content:" ▼"; */
    font-size:9px;
    color:#666;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:20px;
}


/* Dropdown */
.dropdown{
    position:relative;
}

.dropdown > a{
    display:flex;
    align-items:center;
    gap:6px;
}

.dropdown > a i{
    font-size:11px;
    transition:.3s;
}

/* Menu */
.dropdown-menu{
    position:absolute;
    top:45px;
    left:0;

    min-width:220px;

    background:#fff;
    border-radius:10px;
    padding:8px 0;

    list-style:none;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:.3s;

    z-index:999;
}

/* Item */
.dropdown-menu li a{
    display:block;
    padding:12px 20px;
    color:#17325c;
    font-size:14px;
    font-weight:500;
}

.dropdown-menu li a:hover{
    background:#f8f9fc;
    color:#FDB813;
}

/* Show */
.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* Rotate Arrow */
.dropdown:hover > a i{
    transform:rotate(180deg);
}

.login{
    text-decoration:none;
    color:#17325c;
    font-weight:600;
}

.btn{
    background:#FFC107;
    color:#17325c;
    text-decoration:none;
    padding:12px 22px;
    border-radius:6px;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    background:#ffb300;
}


*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f7f9fc;
}

.hero{

max-width:1400px;
margin:auto;
padding:70px 60px;

display:flex;
align-items:center;
justify-content:space-between;
gap:80px;

}

.hero-left{

width:40%;

}

.tag{

font-size:12px;
font-weight:bold;
color:#666;

}

.hero h1{

font-size:72px;
line-height:1.1;
margin:20px 0;

}

.blue{

color:#2d62c7;

}

.yellow{

color:#ffbe0b;

}

.hero p{

font-size:20px;
line-height:1.8;
color:#666;
max-width:500px;

}

.buttons{

display:flex;
gap:20px;
margin-top:40px;

}

.btn-yellow{

background:#FFC107;
padding:16px 28px;
border-radius:10px;
text-decoration:none;
font-weight:bold;
color:#002451;

}

.btn-white{

background:#fff;
padding:16px 28px;
border-radius:10px;
border:1px solid #ddd;
text-decoration:none;
color:#333;

}

.features{

display:flex;
gap:25px;
flex-wrap:wrap;
margin-top:45px;
font-size:14px;
color:#777;

}

/* RIGHT */

.hero-right{

width:60%;
position:relative;

}

.dashboard{

display:flex;
background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.sidebar{

width:70px;
background:#0b2f67;
color:white;

display:flex;
flex-direction:column;
align-items:center;
padding:25px 0;
gap:30px;

}

.sidebar i{

font-size:18px;

}

.content{

flex:1;
padding:30px;

}

.cards{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;

}

.card{

background:#fff;
padding:20px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.06);

}

.card small{

color:#777;

}

.card h3{

margin-top:10px;
font-size:28px;

}

.chart{

margin-top:40px;
background:#fff;
height:250px;
border-radius:20px;

}

.phone{

position:absolute;
right:-20px;
bottom:-30px;

width:260px;
height:520px;

background:white;
border-radius:35px;
box-shadow:0 20px 40px rgba(0,0,0,.25);

padding:20px;
border:8px solid #222;

}

.phone-header{

font-weight:bold;
margin-bottom:25px;

}

.msg{

background:#f3f4f6;
padding:12px;
border-radius:12px;
margin-bottom:12px;

}

.bullet-a1{
    width: 100px;height: 100px;background-color:#FFBC04;border-radius: 50%;
}

.blue-dark{
    color: #002451;
    
}



.features i{
    color: #FBBF02;
    font-size: 16px;
}




.trusted-section{
    width:100%;
    padding:60px 20px;
    text-align:center;
    background:#fff;
}

.trusted-title{
    font-size:18px;
    color:#022451;
    font-weight:500;
    margin-bottom:40px;
}

.trusted-logo{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:70px;
    flex-wrap:wrap;
}

.trusted-logo img{
    height:28px;
    width:auto;
    object-fit:contain;
    transition:.3s;
    opacity:.9;
}

.trusted-logo img:hover{
    opacity:1;
    transform:scale(1.05);
}


.trusted-slider{
    width:100%;
    overflow:hidden;
    padding:20px 0;
    background:#fff;
}

.trusted-track{
    display:flex;
    align-items:center;
    gap:70px;
    width:max-content;
    animation:scrollLogo 35s linear infinite;
}

.trusted-track img{
    height:50px;      /* Perbesar logo */
    width:auto;
    object-fit:contain;
    transition:.3s;
    opacity:.85;
}

.trusted-track img:hover{
    opacity:1;
    transform:scale(1.1);
}

@keyframes scrollLogo{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}




.platform{
    padding:80px 0;
    background:#fff;
}

.platform-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr 1fr;
}

.platform-info,
.feature-card{
    padding:45px 35px;
}



.feature-card:last-child{
    border-right:none;
}

.sub-title{
    display:block;
    color:#f4b400;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:18px;
}

.platform-info h2{
    font-size:42px;
    line-height:1.2;
    color:#022451;
    margin-bottom:25px;
}

.platform-info p{
    color:#5f6673;
    line-height:1.8;
    margin-bottom:30px;
}

.explore{
    text-decoration:none;
    color:#f4b400;
    font-weight:700;
}

.feature-icon{
    font-size:42px;
    margin-bottom:25px;
}

.yellow{
    color:#f4b400;
}

.blue{
    color:#2f65d9;
}

.feature-card h3{
    font-size:34px;
    color:#022451;
    margin-bottom:15px;
}

.feature-card p{
    color:#5f6673;
    line-height:1.7;
    margin-bottom:25px;
}

.feature-card ul{
    padding-left:18px;
    margin-bottom:35px;
}

.feature-card ul li{
    margin-bottom:12px;
    color:#022451;
    font-size:15px;
}

.feature-card a{
    text-decoration:none;
    color:#2f65d9;
    font-weight:600;
}

.feature-card:hover{
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.3s;
}






.ai-section{
    width:100%;
    display: flex;
    grid-template-columns:1fr 1fr;
    overflow:hidden;
}

.ai-left{
    background:#082B63;
    color:#fff;
    display:flex;
    width: 55%;
    padding:20px;
}

.phones img{
    width:300px;
}

.content{
    flex:1;
}

.tag{
    color:#F7B500;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.content h2,
.ai-right h2{
    font-size:42px;
    line-height:1.2;
    margin:18px 0;
}

.content>p,
.ai-right>p{
    color:#d2d7e2;
    line-height:1.8;
    margin-bottom:35px;
}

.feature-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.item{
    display:flex;
    gap:15px;
}

.item i{
    color:#F7B500;
    font-size:22px;
    margin-top:5px;
}

.item h4{
    margin-bottom:8px;
}

.item p{
    color:#b8c2d3;
    font-size:14px;
    line-height:1.6;
}

.ai-right{
    background:#fff;
    padding:40px;
    width: 45%;
}

.ai-right>p{
    color:#555;
}

.relationship{
    display:grid;
    grid-template-columns:1fr 220px 1fr;
    align-items:center;
    margin-top:40px;
}

.box{
    display:flex;
    gap:15px;
    margin-bottom:45px;
}

.box i{
    color:#F7B500;
    font-size:22px;
    margin-top:4px;
}

.box h4{
    color:#082B63;
    margin-bottom:8px;
}

.box p{
    color:#666;
    font-size:14px;
    line-height:1.6;
}

.center-logo{
    display:flex;
    justify-content:center;
}

.sun{
    width:120px;
    height:120px;
    border-radius:50%;
    border:12px solid #F7B500;
    position:relative;
}

.sun:before{
    content:"";
    position:absolute;
    inset:-22px;
    border:2px dashed rgba(247,181,0,.4);
    border-radius:50%;
}



.featuresx{

    padding:80px 0;
    background:#fff;
    text-align:center;

}

.featuresx h5{

    color:#0b2f67;
    letter-spacing:1px;
    font-size:14px;
    margin-bottom:60px;

}

.featurex-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(7,1fr);

    gap:30px;

}

.featurex{

    padding:10px;
    border-right: 1px solid #F5F3F3;

}

.featurex i{

    font-size:35px;
    color:#FDB813;
    margin-bottom:20px;

}

.featurex h4{

    color:#0b2f67;
    font-size:18px;
    margin-bottom:15px;
    line-height:1.4;

}

.featurex p{

    color:#666;
    line-height:1.7;
    font-size:14px;

}

.featurex:hover{

    transform:translateY(-8px);
    transition:.3s;

}




.pricing{
   
    border-top: 1px solid #F5F3F3;
    background:#fff;
    padding-top:50px;
    margin-top:-50px;
}

.pricing-container{
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr 260px;


}

.pricing-info,
.price-card,
.benefits{

    padding:40px;
    /* border-right:1px solid #ececec; */

}



.tag{

    color:#FDB813;
    font-weight:700;
    font-size:13px;
    letter-spacing:.5px;

}

.pricing-info h2{

    margin-top:15px;
    font-size:48px;
    color:#0b2f67;
    line-height:1.2;

}

/* CARD */

.price-card{

    border: 1px solid #F5F3F3;
    background:#fff;
    margin-left:10px;

}

.price-card.active{

    border:2px solid #FDB813;
    border-radius:12px;
    transform:scale(1.02);

}

.popular{

    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:#FDB813;
    color:#fff;
    font-size:11px;
    font-weight:bold;
    padding:6px 14px;
    border-radius:30px;

}

.price-card h3{

    font-size:30px;
    color:#0b2f67;
    margin-bottom:10px;

}

.price-card small{

    color:#666;
    line-height:1.6;

}

.price{

    display:flex;
    align-items:flex-end;
    gap:5px;
    margin:30px 0;

}

.price span{

    font-weight:bold;

}

.price h1{

    font-size:60px;
    color:#0b2f67;

}

.contact{

    display:flex;
    align-items:center;
    gap:10px;
    margin:30px 0;

}

.contact h2{

    font-size:42px;
    color:#0b2f67;

}

.contact span{

    color:#888;

}

/* BUTTON */

.btn-yellow,
.btn-outline{

    display:block;
    text-align:center;
    text-decoration:none;
    padding:14px;
    border-radius:8px;
    font-weight:600;
    margin-bottom:30px;

}

.btn-yellow{

    background:#FDB813;
    color:#0b2f67;

}

.btn-outline{

    border:1px solid #ddd;
    color:#0b2f67;

}

/* LIST */

.price-card ul{

    list-style:none;
    padding:0;

}

.price-card li{

    margin-bottom:15px;
    color:#444;

}

.price-card li::before{

    content:"✔";
    color:#FDB813;
    margin-right:10px;

}

/* BENEFIT */

.benefits{

    display:flex;
    flex-direction:column;
    gap:22px;
    justify-content:center;

}

.benefits div{

    display:flex;
    align-items:center;
    gap:12px;
    color:#444;

}

.benefits i{

    color:#FDB813;
    font-size:18px;

}

.benefits a{

    margin-top:25px;
    color:#FDB813;
    text-decoration:none;
    font-weight:bold;

}

/* HOVER */

.price-card{

    transition:.35s;

}

.price-card:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.price-card.active:hover{

    transform:translateY(-10px) scale(1.02);

}



/* CTA */

.footer-cta{

    background:#fff;
    padding:0 0 0px;
    width:100%;

}
.cta-img{
    width:5%;
}
.cta-img img {
    width:100%;
}

.cta-box{

    max-width:1350px;
    margin:auto;

    background:#fff;
    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    padding:35px 50px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    position:relative;
    top:40px;
    z-index:2;

}

.cta-text h2{

    color:#0b2f67;
    font-size:px;
    margin-bottom:10px;

}

.cta-text p{

    color:#666;

}

.cta-btn{

    display:flex;
    gap:15px;

}

.btn-yellow{

    background:#FDB813;
    color:#0b2f67;
    text-decoration:none;
    padding:16px 28px;
    border-radius:8px;
    font-weight:700;

}

.btn-white{

    background:#fff;
    color:#0b2f67;
    border:1px solid #ddd;
    text-decoration:none;
    padding:16px 28px;
    border-radius:8px;
    font-weight:700;

}


/* FOOTER */

footer{

    background:#082B63;
    padding:90px 0 50px;

}

.footer-container{

    max-width:1350px;
    margin:auto;

    display:grid;
    grid-template-columns:2fr repeat(4,1fr) 1.3fr;

    gap:40px;

}

.footer-about img{

    width:220px;
    margin-bottom:25px;

}

.footer-about p{

    color:#d8deea;
    line-height:1.8;

}

.footer-links h4,
.footer-social h4{

    color:#fff;
    margin-bottom:20px;
    font-size:18px;

}

.footer-links{

    display:flex;
    flex-direction:column;

}

.footer-links a{

    color:#d8deea;
    text-decoration:none;
    margin-bottom:15px;
    transition:.3s;

}

.footer-links a:hover{

    color:#FDB813;

}

.social{

    display:flex;
    gap:15px;
    margin-bottom:30px;

}

.social a{

    width:45px;
    height:45px;

    border:1px solid rgba(255,255,255,.3);

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;

    transition:.3s;

}

.social a:hover{

    background:#FDB813;
    color:#082B63;
    border-color:#FDB813;

}

.footer-social p{

    color:#d8deea;
    line-height:1.6;

}