/*==================================================
 AIOS24 DESIGN SYSTEM
 Developed by PT. PC24 Telekomunikasi Indonesia
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root{

--bg:#040A13;
--bg2:#0B1526;
--card:#101A2D;

--border:#0A7FD4;

--primary:#00BFFF;
--primary2:#0094FF;

--text:#FFFFFF;
--muted:#94A6BA;

--success:#31D97C;

--radius:22px;

--shadow:
0 15px 35px rgba(0,0,0,.45);

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Inter',sans-serif;

background:
linear-gradient(rgba(4,10,19,.94),rgba(4,10,19,.95)),
url("../img/wallpaper.jpg");

background-size:cover;
background-position:center;
background-attachment:fixed;

color:var(--text);

overflow-x:hidden;

}
.container{

width:min(92%,1350px);

margin:auto;

}
.navbar{

position:fixed;

top:0;

left:0;

width:100%;

height:82px;

display:flex;

align-items:center;

background:rgba(4,10,18,.88);

backdrop-filter:blur(18px);

border-bottom:1px solid rgba(0,191,255,.08);

z-index:9999;

transition:.35s;

}

.navbar.scrolled{

background:#07111C;

box-shadow:

0 5px 30px rgba(0,0,0,.45);

}

.navbar .container{

display:flex;

justify-content:space-between;

align-items:center;

}

.navbar-left{

display:flex;

align-items:center;

gap:70px;

}

.logo img{

width:58px;

height:58px;

object-fit:contain;

flex-shrink:0;

}

.logo-text{

    display:flex;
    flex-direction:column;
    justify-content:center;

}

.logo-text img{

    width:auto;
    height:130px;      /* sesuaikan jika perlu */
    display:block;

}

.logo-text span{

    margin-top:4px;
    font-size:14px;
    color:#8FA5BA;
    letter-spacing:.5px;

}/* ===========================
   MENU
=========================== */

.menu{
    display:flex;
    align-items:center;
    gap:42px;
    list-style:none;
}

.menu li{
    position:relative;
}

.menu a{

    color:#FFFFFF;

    text-decoration:none;

    font-size:17px;

    font-weight:600;

    transition:.3s;

    padding:8px 0;

}

/* Hover */

.menu a:hover{

    color:#00BFFF;

}

/* Garis bawah */

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#00BFFF;

    transition:.35s;

}

.menu a:hover::after{

    width:100%;

}

/* Menu aktif */

.menu a.active{

    color:#00BFFF;

}

.menu a.active::after{

    width:100%;

}
.btn-login{

    display:flex;
    align-items:center;
    justify-content:center;

    min-width:155px;
    height:52px;

    background:#101A2D;

    border:1px solid rgba(0,191,255,.30);

    border-radius:16px;

    color:#FFFFFF;

    text-decoration:none;

    font-weight:600;

    font-size:16px;

    transition:.30s;

    box-shadow:0 8px 20px rgba(0,0,0,.30);

}

.btn-login:hover{

    background:#15233A;

    border-color:#00BFFF;

    color:#00BFFF;

    transform:translateY(-2px);

    box-shadow:0 0 20px rgba(0,191,255,.20);

}

.hero{

padding-top:170px;

padding-bottom:120px;

}

.hero-grid{

display:grid;

grid-template-columns:46% 54%;

gap:60px;

align-items:center;

}

.hero h1{

font-size:78px;

font-weight:800;

line-height:1.05;

margin-bottom:25px;

}

.hero h1 span{

color:var(--primary);

display:block;

}

.hero p{

font-size:20px;

line-height:1.9;

color:var(--muted);

margin-top:35px;

margin-bottom:40px;

}
.badge{

display:inline-flex;

align-items:center;

gap:18px;

padding:15px 22px;

background:#0F2034;

border-radius:50px;

border:1px solid rgba(0,191,255,.18);

margin-bottom:35px;

}

.badge img{

height:42px;

}

.badge span{

font-size:12px;

color:#78CFFF;

}

.badge strong{

font-size:16px;

}
.hero-buttons{

display:flex;

gap:18px;

margin-top:45px;

}

.btn-primary{

padding:16px 38px;

background:

linear-gradient(

90deg,

#00BFFF,

#0088FF

);

border-radius:50px;

color:#fff;

font-weight:700;

text-decoration:none;

transition:.35s;

}

.btn-secondary{

padding:16px 38px;

border-radius:50px;

border:2px solid var(--primary);

color:var(--primary);

text-decoration:none;

font-weight:700;

transition:.35s;

}

.btn-primary:hover,

.btn-secondary:hover{

transform:translateY(-4px);

}
.hero-card{

background:#101A2D;

border:1px solid rgba(0,191,255,.22);

border-radius:24px;

padding:45px;

box-shadow:

0 20px 50px rgba(0,0,0,.40);

transition:.35s;

}

.hero-card:hover{

transform:translateY(-8px);

border-color:var(--primary);

box-shadow:

0 0 35px rgba(0,174,255,.18);

}

.hero-card img{

width:170px;

display:block;

margin:auto;

margin-bottom:30px;

}

.hero-card h2{

text-align:center;

font-size:34px;

margin-bottom:12px;

}

.hero-card p{

text-align:center;

color:var(--muted);

margin-bottom:35px;

}
