body.landing-page {
    background-color: #0b0d10;
    color: #f5f2ea;
    font-family: "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
    overflow: auto;
    height: auto;
    display: block;
}

.landing {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.landing-bg {
    position: absolute;
    inset: 0;
    background-image: url("/asset/background/home");
    background-size: cover;
    background-position: center;
    filter: blur(10px) saturate(1.08);
    transform: scale(1.04);
    z-index: 1;
}

.landing-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 30% 20%,
        rgba(212, 175, 55, 0.22),
        rgba(10, 12, 16, 0.88)
    );
    z-index: 2;
}

.landing-content {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    padding: 5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    animation: landing-fade 700ms ease-out both;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.landing-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.subclaim {
    font-size: 1.05rem;
    max-width: 640px;
    opacity: 0.92;
}

.cta-group {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn wa-icon {
    font-size: 1.05rem;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #8f6f1f);
    color: #0b0d10;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #f7f4ee;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.btn.is-hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.98rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: rgba(10, 12, 16, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    animation: landing-rise 700ms ease-out both;
}

.feature wa-icon {
    color: #d4af37;
    font-size: 1.15rem;
}

.trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    opacity: 0.9;
}

.trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(10, 12, 16, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.75;
    animation: float 2.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

.scroll-indicator wa-icon {
    font-size: 1.2rem;
    opacity: 0.9;
}

@keyframes landing-fade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes landing-rise {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 8px);
    }
    100% {
        transform: translate(-50%, 0);
    }
}

@media (max-width: 720px) {
    .landing-content {
        padding: 3.5rem 1.5rem;
    }

    .scroll-indicator {
        bottom: 1.2rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }
}
