/* ============================================================
   BERANDA / HERO
============================================================ */
#beranda {
    min-height: 100vh;
    padding-top: 68px;
    background: linear-gradient(160deg, #f0f7ff 0%, #e8f0fe 40%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

#beranda::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96,165,250,.18) 0%, transparent 70%);
    top: -150px; right: -100px;
    pointer-events: none;
}

#beranda::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.10) 0%, transparent 70%);
    bottom: 50px; left: -80px;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem .20rem 3rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .4rem 1rem;
    background: rgba(219,234,254,.8);
    border: 1px solid var(--blue-200);
    border-radius: var(--radius-full);
    font-size: .95rem; font-weight: 600;
    color: var(--blue-600);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 7px; height: 7px;
    background: var(--blue-600);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .6; transform: scale(1.3); }
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em;
    color: var(--slate-900);
    margin-bottom: 1.25rem;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1rem;
    color: var(--slate-500);
    max-width: 650px;
    margin-bottom: 2.25rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-400)); color: #fff;
    border-radius: 15px;
    font-weight: 600; font-size: .95rem;
    text-decoration: none;
    box-shadow: var(--shadow-blue);
    transition: all .25s;
    border: none; cursor: pointer;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-400)) !important;
    transform: scale(1.01);
    box-shadow: 0 8px 24px rgba(37,99,235,.45) !important;
}

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    line-height: 1;
    padding: 1.25rem 1.75rem;
    background: transparent; color: var(--slate-900);
    border-radius: 15px;
    font-weight: 600; font-size: .95rem;
    text-decoration: none; border: 1px solid var(--slate-300); cursor: pointer;
    transition: all .2s;
}
.btn-ghost:hover {
    background: var(--slate-100);
    color: var(--blue-600);
    border-color: var(--blue-600);
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 5rem 0 0;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 45px;
    background: var(--blue-200);
}

.hero-stat-val {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--blue-600);
    letter-spacing: -.03em;
}

.hero-stat-label {
    font-size: .8rem;
    color: var(--slate-500);
    font-weight: 500;
    margin-top: -5px;
}

@media (max-width: 768px) {
    .hero-container { padding: 3rem 1.25rem 2.5rem; }
}
