.glass-panel {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.scale-in {
    transform: scale(0.95) translateY(40px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hover-lift {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.1);
    border-color: #ffc107;
}

.glow-hover:hover {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ffc107;
    width: 24px;
    border-radius: 4px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ffc107;
    background: rgba(30, 30, 30, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #ffc107;
    color: #3f2e00;
}

.works-swiper {
    padding: 20px 0 60px;
}

.wechat-qr-card {
    overflow: hidden;
}

.wechat-qr-image {
    transition: transform 0.3s ease;
    transform-origin: center;
}

.wechat-qr-card:hover .wechat-qr-image {
    transform: scale(1.08);
}

@media (max-width: 767px) {
    nav > div {
        gap: 12px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    nav img {
        height: 32px;
    }

    nav a[href="#contact"] {
        padding: 8px 16px;
        font-size: 12px;
        line-height: 16px;
        white-space: nowrap;
    }

    #hero {
        min-height: 100svh;
        padding-top: 88px;
        padding-bottom: 32px;
    }

    #hero .hero-float h1 {
        font-size: 36px;
        line-height: 44px;
    }

    #hero .hero-float p {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 32px;
    }

    .text-headline-lg {
        font-size: 32px;
        line-height: 40px;
    }

    .text-headline-md {
        font-size: 24px;
        line-height: 32px;
    }

    .text-body-lg {
        font-size: 16px;
        line-height: 24px;
    }

    #about h2,
    #services h2,
    #works h2,
    #clients h2,
    #contact h2 {
        word-break: break-word;
    }

    .wechat-qr-list {
        gap: 12px;
    }

    .wechat-qr-card {
        width: 104px;
        padding: 10px;
    }
}
