@charset "UTF-8";

/* Service Hero */
.service-hero {
    position: relative;
    min-height: 70vh;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 100px;
    overflow: hidden;
    text-align: center;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: floating 10s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: var(--electric-blue);
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: #4f46e5;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

@keyframes floating {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

.service-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-label {
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: var(--electric-blue);
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 84px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 40px;
}

.hero-title span {
    background: linear-gradient(90deg, #fff, #00f2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin: 0 auto 60px;
    max-width: 700px;
}

@media (max-width: 991px) {
    .hero-title { font-size: 64px; }
    .hero-desc { font-size: 16px; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 48px; }
    .service-hero { padding: 100px 20px 60px; }
}
