* {
    margin:0;
    padding:0px;
    box-sizing:border-box;
    font-family:sans-serif;
}

body {
    background:#0B1A2B;
    color:white;
    width: 100%;
    overflow-x: hidden;}

header {
    position:fixed;
    width:100%;
    top:0;
    z-index: 9999;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 35px;
    background:rgba(11,26,43,0.8);
    backdrop-filter:blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo .text {
    font-weight: bold;
    font-size: 22px;
}
.logo .highlight {
    color: #5783f3;
}

.logo img {
    width: 40px;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(47,107,255,0.6),
                0 0 16px rgba(47,107,255,0.4);
    transition: 0.3s;
}

.logo img:hover {
    box-shadow: 0 0 12px rgba(47,107,255,0.9),
                0 0 24px rgba(47,107,255,0.7);
}

nav a {
    margin:0 10px;
    color:#A0AEC0;
    text-decoration:none;
}

nav a:hover {color:#e2e9f9;}

.nav-right input {
    background: rgba(255,255,255,0.08);
    border: none;
    padding: 15px 10px;
    border-radius: 20px;
    color: white;
}

.search-box {
    position: relative;
}

.search-box input {
    background: rgba(255,255,255,0.08);
    border: none;
    padding: 8px 35px 8px 12px; 
    border-radius: 999px;;
    color: white;
    outline: none;
}

.search-box::after {
    content: "🔍";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    pointer-events: none;
}

.nav-right button {
    background: #2F6BFF;
    border: none;
    padding: 12px 10px;
    border-radius: 999px;;
    color: white;
    transition: 0.3s;
    animation: glowJam 5s ease-in-out infinite;
}

.nav-right button:hover {
    background: #4F8CFF;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(47, 107, 255, 0.1);
    color: #8caeee;
    padding: 6px 12px;
    border-radius: 999px; 
    font-size: 11px;
    border: 1px solid rgba(47, 107, 255, 0.3);
}

.dot {
    width: 8px;
    height: 8px;
    background: #8babe6;
    border-radius: 50%;
    position: relative;
}

.dot::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #759ae0;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    70% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    align-items: center;
    gap: 40px;
    padding: 140px 40px;
    background: radial-gradient(circle at 90% 20%, rgba(47,107,255,0.25), transparent 40%),
                linear-gradient(135deg, #0B1A2B);
}

.hero::after {
    content: "";
    position: absolute;
    right: -100px;
    top: 50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(47,107,255,0.4), transparent);
    filter: blur(80px);
    z-index: 0;
}

.hero-left {
    max-width: 550px;
}

.hero-right {
    display: flex;
    justify-content: center;
    z-index: 2;
}

.hero h1 {
    font-size: 67px;
    line-height: 1.2;
    font-weight: bold;
}

.hero h1 span {
    color: #4F8CFF;
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 30px;
    }
}

.desc {color:#A0AEC0;}

section:nth-of-type(2) {
    position: relative;
    background : linear-gradient(135deg, #0B1A2B);
    padding: 10px 40px;
    overflow: hidden;
}

.promo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(47, 107, 255, 0.1);
    border: 1px solid rgba(47, 107, 255, 0.3);
    padding: 10px 15px;
    border-radius: 12px;
    margin-top: 20px;
    width: fit-content;
}

.icon-jam {
    width: 28px;
    height: 28px;
    border: 2px solid #4F8CFF;
    border-radius: 50%;
    position: relative;
    animation: glowJam 2s ease-in-out infinite;
}

.icon-jam::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 7px;
    background: #4F8CFF;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-jam::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 2px;
    background: #4F8CFF;
    top: 50%;
    left: 50%;
    transform-origin: left;
    transform: rotate(45deg);
}

.icon-jam {
    width: 28px;
    height: 28px;
    border: 2px solid #4F8CFF;
    border-radius: 50%;
    position: relative;
    animation: glowJam 2s ease-in-out infinite;
}

@keyframes glowJam {
    0% {
        box-shadow: 0 0 0px #4F8CFF;
        opacity: 0.6;
    }
    50% {
        box-shadow: 0 0 12px #4F8CFF;
        opacity: 1;
    }
    100% {
        box-shadow: 0 0 0px #4F8CFF;
        opacity: 0.6;
    }
}

.promo-text p {
    font-size: 12px;
    color: #A0AEC0;
}

.date {
    color: #FF4D4D;
    font-weight: bold;
}

.hero-btn {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #3168f3;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
    animation: glowJam 10s ease-in-out infinite;
}

.btn-primary:hover {
    background: #4F8CFF;
}

.btn-wa {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.btn-wa:hover {
    background: rgba(255,255,255,0.18);
}

@media (max-width: 768px) {
    .promo {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        justify-content: center;
    }
    .promo-text {
        text-align: center;
    }
    .hero-btn {
        justify-content: center;
        flex-wrap: wrap; 
    }
    .btn-primary,
    .btn-wa {
        justify-content: center;
    }

}

@media (max-width: 480px) {
    .hero-btn {
        flex-direction: column; 
        align-items: center;
    }
    .btn-primary,
    .btn-wa {
        width: 100%;
        max-width: 280px;
    }
}
.mockup {
    width: 100%;
    max-width: 420px;
    height: 300px;
    background: #13233A;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(47,107,255,0.4);
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
}

.mockup-header {
    display: flex;
    gap: 6px;
    padding: 10px;
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red { background: #FF5F56; }
.yellow { background: #FFBD2E; }
.green { background: #27C93F; }

.mockup-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-body::before {
    content: "";
    height: 120px;
    background: #233753;
    border-radius: 8px;
}

.mockup-body::after {
    content: "";
    flex: 1;
    background: linear-gradient(
        180deg,
        #1E3A5F 30%,
        #233753 100%
    );
    border-radius: 8px;
}

.mockup-body div {
    height: 40px;
    background: #35486b;
    border-radius: 6px;
    opacity: 0.6;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr; 
        text-align: center;
    }
    .hero-left {
        max-width: 100%;
    }
    .hero-right {
        display: none; 
    }
    .hero h1 {
        font-size: 55px;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-title p {
    color: #A0AEC0;
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto; 
    line-height: 1.6;
}

.services {
    padding: 60px 40px;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 13px;
        padding: 0 10px;
    }

    .services {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 20px;
    }
    .section-title p {
        font-size: 12px;
    }
}

.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: 0.3s;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(47,107,255,0.15), transparent 60%);
    opacity: 0;
    transition: 0.3s;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px);
    border: 1px solid rgba(47,107,255,0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: bold;
}

.badge.red {
    background: #FF3B3B;
    color: white;
}

.badge.blue {
    background: #2F6BFF;
    color: white;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(47,107,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 14px;
    color: #A0AEC0;
    margin-bottom: 15px;
}

.card ul {
    font-size: 14px;
    color: #A0AEC0;
    margin-bottom: 15px;
}

.garis {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 15px 0;
}

.price {
    color: #6B7280;
    margin-top: 10px;
    margin-bottom: 15px;
}

.price del {
    color: #6B7280;
    margin-right: 8px;
}

.price strong {
    color: #ffffff;
    font-size: 20px;
}

.card-btn {
    width: 100%;
    margin-top: auto;
    padding: 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    transform: scale(1);
}

.card-btn:active {
    transform: scale(0.96);
}
.card-btn.primary {
    background: #2F6BFF;
    color: white;
    animation: glowJam 5s ease-in-out infinite;
}

.card-btn.primary:hover {
    background: #4F8CFF;
}

.card-btn.primary:active {
    background: #1f4fd1;
}
.card-btn.outline {
    background: transparent;
    border: 2px solid #2F6BFF;
    color: #2F6BFF;
}

.card-btn.outline:hover {
    background: #2F6BFF;
    color: white;
}

.card-btn.outline:active {
    background: #1f4fd1;
    border-color: #1f4fd1;
    color: white;
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 20px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fitur-grid {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    text-align:center;
    gap:20px;
}

.faq {
    padding: 60px 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.arrow {
    transition: 0.3s;
    font-size: 18px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    color: #A0AEC0;
    font-size: 12px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 15px 20px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-item:hover {
    border-color: rgba(47,107,255,0.4);
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: #040d19; 
    margin-top: 60px;
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-desc {
    color: #A0AEC0;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-copy {
    color: #6B7280;
    margin-top: 10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-title p {
    color: #A0AEC0;
    font-size: 14px;
}

.keunggulan {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.keunggulan-box {
    background: rgb(20, 56, 146);
    border: 1px solid rgb(38, 82, 193);
    border-radius: 20px;
    padding: 40px 25px;
    max-width: 1100px;
    width: 100%;
    backdrop-filter: blur(8px);
}

.keunggulan-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: white;
}

.fitur-card {
    text-align: left;
    padding: 20px;
    border-radius: 15px;
    background: rgb(24, 33, 100);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s;
}

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

.fitur-card h4 {
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
}

.fitur-card p {
    font-size: 13px;
    color: #A0AEC0;
    font-weight: normal;
}

@media (max-width: 1024px) {
    .fitur-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fitur-grid {
        grid-template-columns: 1fr;
    }
}

html {
    scroll-behavior: smooth;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0B1A2B;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow-x: hidden;
        transition: 0.3s ease;
    }
    nav.active {
        max-height: 300px;
        padding: 15px 0;
    }
    nav a {
        display: block;
        margin: 10px 0;
    }
    .nav-right {
        display: none; 
    }
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}