/* ═══════════════ HERO ═══════════════ */
#beranda {
    min-height: 100vh;
    padding-top: 68px;
    position: relative;
    overflow: hidden;
    background: #0b1220;
}

.swiper-hero, .hero-slider-container {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-slide {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 18, 32, 0.72) 0%, rgba(15, 76, 129, 0.42) 50%, rgba(11, 18, 32, 0.65) 100%);
    z-index: 1;
}


/* Decorative shapes */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0; /* Behind slider */
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .18;
}

.hero-shape.s1 {
    width: 600px;
    height: 600px;
    background: var(--cyan);
    top: -200px;
    right: -100px;
    animation: float1 8s ease-in-out infinite;
}

.hero-shape.s2 {
    width: 400px;
    height: 400px;
    background: var(--red);
    bottom: -100px;
    left: -80px;
    animation: float2 10s ease-in-out infinite;
}

.hero-shape.s3 {
    width: 300px;
    height: 300px;
    background: var(--blue);
    top: 40%;
    left: 40%;
    animation: float3 12s ease-in-out infinite;
    opacity: .10;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-30px) scale(1.05)
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-20px) rotate(6deg)
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    33% {
        transform: translate(20px, -20px)
    }

    66% {
        transform: translate(-15px, 15px)
    }
}

/* Grid pattern overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 76, 129, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 76, 129, .04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 3; /* Behind content but above background */
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 80px 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.full-width-content {
    max-width: 850px;
    width: 100%;
}


.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeUp .7s .1s cubic-bezier(.22, 1, .36, 1) both;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .2);
}

.hero-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 99px;
    background: var(--cyan);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(31, 162, 201, .4)
    }

    50% {
        box-shadow: 0 0 0 5px rgba(31, 162, 201, .0)
    }
}

.hero-h1 {
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: #fff;
    animation: fadeUp .7s .2s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-h1 .line-accent {
    background: linear-gradient(90deg, #ff7e67, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 600px;
    animation: fadeUp .7s .3s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeUp .7s .4s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    animation: fadeUp .7s .5s cubic-bezier(.22, 1, .36, 1) both;
}

.trust-avatars {
    display: flex;
}

.trust-avatars span {
    width: 32px;
    height: 32px;
    border-radius: 99px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-left: -8px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #fff;
    font-weight: 700;
}

.trust-avatars span:first-child {
    margin-left: 0;
    background: linear-gradient(135deg, var(--red), #ff5e58);
}

.trust-avatars span:nth-child(2) {
    background: linear-gradient(135deg, #1a1a2e, #444);
}

.trust-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.4;
}

.trust-text strong {
    color: #fff;
    display: block;
}

/* Hero right — visual card stack */
.hero-right {
    position: relative;
    height: 480px;
    animation: fadeUp .7s .35s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, .90);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .95);
    border-radius: 22px;
    box-shadow: var(--sh2);
    padding: 22px;
}

.hero-card.main-card {
    width: 340px;
    top: 40px;
    right: 0;
}

.mc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.mc-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
}

.mc-title {
    font-weight: 800;
    font-size: 13.5px;
}

.mc-sub {
    font-size: 11px;
    color: var(--muted);
}

.mc-prog-list {
    display: grid;
    gap: 9px;
}

.mc-prog {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 12px;
    background: var(--gray);
    font-size: 12.5px;
    font-weight: 600;
    transition: background .18s;
}

.mc-prog:hover {
    background: rgba(15, 76, 129, .08);
}

.mc-dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    flex-shrink: 0;
}

.mc-prog .count {
    margin-left: auto;
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.hero-badge-1 {
    bottom: 110px;
    left: -20px;
    width: 190px;
    animation: floatBadge 4s ease-in-out infinite;
}

.hero-badge-2 {
    top: 0;
    left: 30px;
    width: 165px;
    animation: floatBadge 5s 1s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.hb-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 8px;
}

.hb-num {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hb-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

/* Flags decoration */
.jp-flag {
    position: absolute;
    bottom: 60px;
    right: -10px;
    width: 130px;
    background: rgba(255, 255, 255, .9);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: var(--sh);
    border: 1px solid rgba(255, 255, 255, .95);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    font-weight: 700;
    animation: floatBadge 4.5s .5s ease-in-out infinite;
}

.jp-flag .flag {
    font-size: 22px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}