/* --- CSS RESET & VARIABEL WARNA --- */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    font-family: 'Inter', sans-serif; 
}

:root {
    --bg-dark: #07080c;
    --bg-card: #11131a;
    --bg-input: #171a24;
    --primary-blue: #00a2ff; 
    --primary-blue-glow: rgba(0, 162, 255, 0.4);
    --text-main: #ffffff;
    --text-muted: #8491a0;
    --border-color: #1e2230;
}

body { 
    background: var(--bg-dark); 
    color: var(--text-main); 
    line-height: 1.6; 
    overflow-x: hidden; 
}

/* --- NAVBAR WITH GLOW EFFECT --- */
nav { 
    background: rgba(11, 13, 20, 0.85); 
    backdrop-filter: blur(12px); 
    border-bottom: 1px solid var(--border-color); 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    width: 100%;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 16px 20px; 
}

.nav-left { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-weight: 700; 
    font-size: 19px; 
    color: var(--primary-blue);
    text-shadow: 0 0 12px var(--primary-blue-glow);
    animation: textPulse 3s infinite alternate;
}

.nav-right { 
    display: flex; 
    gap: 18px; 
    align-items: center; 
    color: var(--text-muted); 
    font-size: 18px; 
}

.nav-right i {
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.nav-right i:hover { 
    color: var(--primary-blue); 
    transform: scale(1.1);
}

/* --- HERO & BOX GENERATOR RESIZE --- */
.hero { 
    max-width: 550px; 
    margin: 50px auto; 
    text-align: center; 
    padding: 0 20px; 
}

.hero h1 { 
    font-size: 38px; 
    font-weight: 700; 
    margin-bottom: 12px; 
    letter-spacing: -1px; 
    line-height: 1.2;
}

.hero h1 span { 
    color: var(--primary-blue); 
    display: block; 
    font-size: 44px; 
    text-shadow: 0 0 15px rgba(0, 162, 255, 0.3);
}

.hero-desc { 
    color: var(--text-muted); 
    font-size: 14px; 
    margin-bottom: 25px; 
    line-height: 1.5;
}

/* Badges Alignment */
.badge-container { 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    flex-wrap: wrap; 
    margin-bottom: 30px; 
}

.badge { 
    background: #151822; 
    border: 1px solid var(--border-color); 
    padding: 6px 14px; 
    border-radius: 20px; 
    font-size: 12px; 
    font-weight: 500; 
    display: flex; 
    align-items: center; 
    gap: 6px; 
}

/* Animasi titik bergerak kedip */
.badge .dot { 
    width: 6px; 
    height: 6px; 
    background: var(--primary-blue); 
    border-radius: 50%; 
    box-shadow: 0 0 10px var(--primary-blue); 
    animation: dotPulse 1.5s infinite alternate;
}

/* --- CARD HOVER ANIMATION EFFECT --- */
.generator-box { 
    background: var(--bg-card); 
    border: 1px solid var(--border-color); 
    border-radius: 16px; 
    padding: 24px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.5); 
    text-align: left; 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
}

.generator-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 162, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 162, 255, 0.1);
}

.input-wrapper { 
    position: relative; 
    display: flex; 
    align-items: center; 
    margin-bottom: 16px; 
}

.input-wrapper i { 
    position: absolute; 
    left: 16px; 
    color: var(--text-muted); 
}

.input-wrapper input { 
    width: 100%; 
    padding: 14px 16px 14px 45px; 
    background: var(--bg-input); 
    border: 1px solid var(--border-color); 
    color: var(--text-main); 
    border-radius: 10px; 
    font-size: 14px; 
    outline: none; 
    transition: border-color 0.3s ease, box-shadow 0.3s ease; 
}

.input-wrapper input:focus { 
    border-color: var(--primary-blue); 
    box-shadow: 0 0 0 3px rgba(0, 162, 255, 0.15); 
}
/* --- PERBAIKAN TOTAL CAPTCHA DAN TEKS PERINGATAN --- */
.real-captcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    width: 100%;
    max-width: 100%;
    overflow: visible; /* Diubah agar teks merah di bawahnya tidak terpotong */
    text-align: center;
    
    /* Tambahan padding bawah agar teks peringatan merah 
       punya ruang dan tidak menabrak tombol Lewati */
    padding-bottom: 25px; 
}

/* Memaksa widget hCaptcha rapi di tengah */
.h-captcha {
    display: inline-block;
    margin: 0 auto;
    transform: scale(0.88);
    -webkit-transform: scale(0.88);
    transform-origin: top center; /* Mengubah tumpuan skala ke atas-tengah */
    -webkit-transform-origin: top center;
}

.h-captcha {
    display: inline-block;
    margin: 0 auto;
    transform: scale(0.88);
    -webkit-transform: scale(0.88);
    transform-origin: center center;
    -webkit-transform-origin: center center;
}

.h-captcha {
    transform: scale(0.92);
    -webkit-transform: scale(0.92);
    transform-origin: center;
    -webkit-transform-origin: center;
}

/* BUTTON GROW & GLOW EFFECT */
.btn-bypass { 
    width: 100%; 
    padding: 14px; 
    background: var(--primary-blue); 
    border: none; 
    color: #ffffff; 
    font-weight: 600; 
    font-size: 15px; 
    border-radius: 10px; 
    cursor: pointer; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 8px; 
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-bypass:hover { 
    background: #1cb0ff; 
    box-shadow: 0 5px 20px rgba(0, 162, 255, 0.4);
}

.btn-bypass:active {
    transform: scale(0.97);
}

/* ANIMASI LOADING BAR BERGERAK */
.loader-container {
    margin-top: 20px;
    background: #141722;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    display: none;
}

.loader-container p {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.loader-bar {
    width: 100%;
    height: 4px;
    background: #1f2436;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40%;
    background: var(--primary-blue);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-blue);
    animation: loadingMove 1.2s infinite linear;
}

/* HASIL OUTPUT KEY */
.result-box { 
    background: #0d1724; 
    border: 1px solid rgba(0, 162, 255, 0.25); 
    border-radius: 10px; 
    padding: 16px; 
    margin-top: 20px; 
    display: none; 
    text-align: center; 
    animation: fadeInUp 0.4s ease forwards;
}

.result-title { 
    font-size: 12px; 
    font-weight: 600; 
    color: var(--primary-blue); 
    text-transform: uppercase; 
    margin-bottom: 8px; 
    letter-spacing: 0.5px;
}

.key-display { 
    background: #070c14; 
    padding: 12px; 
    border-radius: 8px; 
    font-family: monospace; 
    font-size: 15px; 
    color: #fff; 
    word-break: break-all; 
    margin-bottom: 12px; 
    border: 1px solid rgba(0, 162, 255, 0.1); 
}

.btn-copy { 
    background: var(--primary-blue); 
    color: #fff; 
    padding: 9px 18px; 
    border-radius: 6px; 
    border: none; 
    font-size: 13px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: background 0.2s;
}

.btn-copy:hover { background: #1cb0ff; }

/* --- GRID JUDUL SECARA RAPI --- */
.section-heading {
    text-align: center;
    margin: 80px 0 35px 0;
    padding: 0 20px;
}

.section-heading h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 4px;
}

/* STEPS GRID */
.steps-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 20px; 
    padding: 0 20px; 
    max-width: 850px; 
    margin: 0 auto; 
}

.step-card { 
    background: var(--bg-card); 
    border: 1px solid var(--border-color); 
    padding: 24px; 
    border-radius: 14px; 
    text-align: center; 
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
}

.step-num { 
    width: 32px; 
    height: 32px; 
    background: var(--primary-blue); 
    color: #fff; 
    font-weight: 700; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin: 0 auto 14px auto; 
    box-shadow: 0 0 15px rgba(0, 162, 255, 0.3); 
    font-size: 14px;
}

.step-card h3 { font-size: 16px; margin-bottom: 6px; }
.step-card p { color: var(--text-muted); font-size: 13px; line-height: 1.5; }

/* BENEFIT SECTIONS */
.benefit-container { 
    max-width: 850px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.benefit-card { 
    background: var(--bg-card); 
    border: 1px solid var(--border-color); 
    padding: 24px; 
    border-radius: 14px; 
    margin-bottom: 16px; 
}

.benefit-header { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    margin-bottom: 8px; 
}

.benefit-header i { font-size: 20px; color: var(--primary-blue); }
.benefit-header h2 { font-size: 17px; }
.price-strike { font-size: 12px; text-decoration: line-through; color: #ef4444; margin-left: 8px; font-weight: 400; }
.benefit-card p { color: var(--text-muted); font-size: 13px; line-height: 1.5; }

.tags-wrapper { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 6px; 
    margin-top: 14px; 
}

.tag { 
    background: #151822; 
    border: 1px solid var(--border-color); 
    padding: 4px 10px; 
    border-radius: 6px; 
    font-size: 11px; 
    font-weight: 500; 
    color: var(--text-muted); 
}

/* FAQ ACCORDION */
.faq-container { 
    max-width: 550px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.faq-item { 
    background: var(--bg-card); 
    border: 1px solid var(--border-color); 
    border-radius: 10px; 
    margin-bottom: 10px; 
    overflow: hidden; 
}

.faq-header { 
    padding: 16px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
    font-weight: 600; 
    font-size: 14px; 
}

.faq-content { 
    padding: 0 16px; 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.3s ease, padding 0.3s ease; 
    color: var(--text-muted); 
    font-size: 13px; 
}

/* --- FOOTER --- */
footer { 
    background: #050609; 
    padding: 40px 20px; 
    border-top: 1px solid var(--border-color); 
    text-align: center; 
    margin-top: 100px;
}

.footer-brand { 
    font-weight: 700; 
    font-size: 20px; 
    color: var(--primary-blue); 
    margin-bottom: 8px; 
}

.footer-desc { 
    color: var(--text-muted); 
    font-size: 12px; 
    max-width: 400px; 
    margin: 0 auto 20px auto; 
    line-height: 1.5;
}

.footer-socials { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    margin-bottom: 24px; 
    font-size: 19px; 
    color: var(--text-muted); 
}

.footer-socials i { cursor: pointer; transition: color 0.2s; }
.footer-socials i:hover { color: var(--primary-blue); }

.footer-links { 
    font-size: 12px; 
    color: var(--text-muted); 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 8px; 
    max-width: 260px; 
    margin: 0 auto 20px auto; 
}

.footer-copy { 
    font-size: 11px; 
    color: var(--text-muted); 
    border-top: 1px solid #11141d; 
    padding-top: 20px; 
    margin-top: 20px; 
}

.status-dot { color: var(--primary-blue); font-weight: 500; animation: textPulse 2s infinite alternate; }

/* --- SEMUA DAFTAR ANIMASI KEYFRAMES --- */
@keyframes textPulse {
    from { opacity: 0.85; text-shadow: 0 0 4px var(--primary-blue-glow); }
    to { opacity: 1; text-shadow: 0 0 14px rgba(0, 162, 255, 0.7); }
}

@keyframes dotPulse {
    from { transform: scale(0.9); opacity: 0.5; }
    to { transform: scale(1.1); opacity: 1; }
}

@keyframes loadingMove {
    0% { left: -40%; }
    100% { left: 100%; }
}

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

/* Responsivitas Desktop Screen */
@media (min-width: 768px) {
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
