/* Company Page Styles */

.company-page {
  padding: var(--space-16) 0;
}

/* Hero Section Styles */
.page-hero {
    position: relative;
    overflow: hidden;
}

/* 배경 원형 애니메이션 */
.page-hero .circle-bg {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
    animation: circleFloat 15s ease-in-out infinite;
}

.page-hero .circle-bg:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.page-hero .circle-bg:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.page-hero .circle-bg:nth-child(3) {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.page-hero .circle-bg:nth-child(4) {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
    animation-duration: 19s;
}

@keyframes circleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
    90% {
        opacity: 0.3;
    }
}

/* 배경 선 애니메이션 */
.page-hero .line-bg {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.page-hero .line-bg:nth-child(5) {
    width: 2px;
    height: 100%;
    left: 20%;
    animation: lineFloat1 12s ease-in-out infinite;
}

.page-hero .line-bg:nth-child(6) {
    width: 2px;
    height: 100%;
    left: 50%;
    animation: lineFloat2 15s ease-in-out infinite;
    animation-delay: 3s;
}

.page-hero .line-bg:nth-child(7) {
    width: 2px;
    height: 100%;
    right: 25%;
    animation: lineFloat3 18s ease-in-out infinite;
    animation-delay: 6s;
}

.page-hero .line-bg:nth-child(8) {
    width: 100%;
    height: 2px;
    top: 30%;
    animation: lineFloat4 14s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes lineFloat1 {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    20% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
        transform: translateY(20px);
    }
    80% {
        opacity: 0.3;
    }
}

@keyframes lineFloat2 {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    20% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.6;
        transform: translateY(-20px);
    }
    80% {
        opacity: 0.4;
    }
}

@keyframes lineFloat3 {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    20% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
        transform: translateY(15px);
    }
    80% {
        opacity: 0.3;
    }
}

@keyframes lineFloat4 {
    0%, 100% {
        opacity: 0;
        transform: translateX(0);
    }
    20% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.4;
        transform: translateX(10px);
    }
    80% {
        opacity: 0.3;
    }
}

/* Additional company page specific styles */
