.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(2, 26, 17, 0.4) 0%, rgba(2, 26, 17, 0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.navbar.scrolled {
    background: rgba(2, 26, 17, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.navbar.scrolled .nav-container {
    padding: 0.8rem 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
    transition: transform 0.4s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover .nav-logo-img {
    transform: rotate(-8deg);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(-50%);
    border-radius: 999px;
    opacity: 0;
}

.nav-links a:hover {
    color: var(--text-main);
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
    opacity: 1;
    box-shadow: 0 0 10px var(--primary-glow);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.15));
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 0.6rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    color: var(--primary-glow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(16, 185, 129, 0.1);
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-glow);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-glow);
    animation: blink 2s infinite ease-in-out;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -2.5px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #ffffff 10%, var(--primary-glow) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 15px 45px rgba(16, 185, 129, 0.4);
    display: inline-block;
}

.hero-desc {
    max-width: 680px;
    color: var(--text-muted);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    margin: 3rem 0;
}

.hero-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.about {
    padding: 8rem 2rem;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(2, 26, 17, 0.8) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 2;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--primary-glow));
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image-wrapper {
    position: relative;
    perspective: 1500px;
}

.image-inner {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.08);
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.image-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 32px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 3;
    transition: all 0.6s;
}

.about-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 26, 17, 0.95) 0%, rgba(2, 26, 17, 0.2) 60%, transparent 100%);
    z-index: 1;
    transition: opacity 0.6s;
    mix-blend-mode: multiply;
}

/* web develop mikorayuki: https://mikorayuki.my.id */
.img-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.6s;
    pointer-events: none;
    transform: rotate(30deg);
}

.image-inner:hover {
    transform: rotateY(-10deg) rotateX(6deg) scale(1.03);
    box-shadow: -20px 50px 100px rgba(0, 0, 0, 0.9), 0 0 0 2px rgba(16, 185, 129, 0.4);
}

.image-inner:hover::before {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: inset 0 0 30px rgba(16, 185, 129, 0.2);
}

.image-inner:hover .about-img {
    transform: scale(1.08) translateX(2%);
}

.image-inner:hover .img-overlay {
    opacity: 0.4;
}

.image-inner:hover .img-glow {
    opacity: 1;
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% {
        transform: translateY(-50%) rotate(30deg);
    }

    100% {
        transform: translateY(50%) rotate(30deg);
    }
}

.footer {
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-cta {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(2, 26, 17, 0.6));
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 48px;
    padding: 7rem 3rem;
    max-width: 1000px;
    margin: 0 auto 6rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.1);
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
    box-shadow: 0 0 25px var(--primary-glow);
}

.footer-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.35rem;
    margin-bottom: 3.5rem;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 3rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.05rem;
    font-weight: 500;
}

@media(max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .btn-secondary {
        justify-content: center;
        margin: 0 auto;
    }
}

@media(max-width: 768px) {

    .nav-links,
    .btn-nav {
        display: none;
    }

    .footer-cta {
        padding: 4rem 2rem;
        border-radius: 36px;
    }

    .hero-title {
        font-size: 4rem;
    }
}

@media(max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .social-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
    }

    .btn-masuk-server {
        padding: 1.2rem 2rem;
        font-size: 1.15rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}