
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #151b3d 50%, #0a0e27 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    font-size: 1rem; /* 16px */ /* 기본 폰트 사이즈 (1rem = 16px) */
}

/* 반응형 기본 폰트 사이즈 */
@media (max-width: 1200px) {
    html {
        font-size: 0.9375rem; /* 15px */
    }
}

@media (max-width: 768px) {
    html {
        font-size: 0.875rem; /* 14px */
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.75rem; /* 28px */
    font-weight: 900;
    background: linear-gradient(135deg, #0047FF, #7B68EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 기존 이모티콘 스타일 제거 - SVG 아이콘으로 대체됨 */
.logo::before {
    content: "";
    font-size: 2rem; /* 32px */
}

/* SVG 아이콘 전역 스타일 */
.icon {
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
    transition: all 0.3s ease;
}

/* 아이콘 호버 효과 */
.icon:hover {
    transform: scale(1.1);
}

/* 섹션 배지 내 아이콘 정렬 */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* 카드 아이콘 중앙 정렬 */
.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 노드 아이콘 중앙 정렬 */
.node-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 위젯 아이콘 정렬 */
.widget-icon {
    display: inline-flex;
    align-items: center;
}

/* 기능 제목 아이콘 정렬 */
.siem-feature h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 15px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: #a8b2d1;
    text-decoration: none;
    font-size: 0.9375rem; /* 15px */
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0047FF;
}

.nav-links a.active {
    color: #0047FF;
    font-weight: 600;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #0047FF;
    border-radius: 2px;
}

.cta-button {
    background: linear-gradient(135deg, #0047FF, #7B68EE);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 71, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 71, 255, 0.5);
    color: white !important;
}

/* Hero Section */
.hero {
    padding: 0;
    margin: 0 auto;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    min-height: 70vh;
    padding: 0 60px;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-left {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-wrapper {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 71, 255, 0.4);
    position: relative;
    z-index: 10;
    background: #000;
}

.hero-video-wrapper:hover .video-controls {
    opacity: 1;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 10;
}

.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.hero-video::-webkit-media-controls-panel {
    display: none !important;
}

/* Video Controls */
.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 20;
}

.video-control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.video-control-btn:hover {
    background: rgba(0, 71, 255, 0.8);
    border-color: rgba(0, 71, 255, 1);
    transform: scale(1.1);
}

.video-control-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.hero-right {
    flex: 0 0 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    margin-bottom: 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 71, 255, 0.1);
    border: 1px solid rgba(0, 71, 255, 0.3);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem; /* 14px */
    color: #0047FF;
    margin-bottom: 30px;
    font-weight: 600;
}

h1 {
    font-size: 4.5rem; /* 72px */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #a8b2d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem; /* 20px */
    color: #a8b2d1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-right .hero-buttons {
    justify-content: center;
}

.primary-button {
    background: linear-gradient(135deg, #0047FF, #7B68EE);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem; /* 16px */
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 71, 255, 0.4);
    display: inline-block;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 71, 255, 0.6);
}

.secondary-button {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem; /* 16px */
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* 3D Cards Section - STEP 스타일 */
.cards-container {
    perspective: 1500px;
    position: relative;
    height: 600px;
    margin: 80px auto;
    max-width: 1200px;
}

.card-3d {
    position: absolute;
    width: 340px;
    height: 470px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(0, 71, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                z-index 0.1s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 71, 255, 0.2);
    overflow: hidden;
}

/* 비활성 카드 스타일 */
.card-3d:not(.active) {
    opacity: 0.7;
    filter: blur(0.5px);
}

/* 호버 효과 개선 */
.card-3d:hover {
    opacity: 1;
    transform: rotateY(0deg) rotateX(0deg) translateZ(50px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(0, 71, 255, 0.3),
                0 0 30px rgba(123, 104, 238, 0.2);
    z-index: 15 !important;
    border: 2px solid rgba(0, 71, 255, 0.5);
    transition: all 0.3s ease;
}

.card-3d.active:hover {
    opacity: 1;
    transform: rotateY(0deg) rotateX(0deg) translateZ(30px) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5),
                0 0 50px rgba(0, 71, 255, 0.3),
                0 0 25px rgba(123, 104, 238, 0.2);
    z-index: 15 !important;
    border: 2px solid rgba(0, 71, 255, 0.4);
}

/* 호버 시 다른 카드들 흐림 효과 */
.cards-container:hover .card-3d:not(:hover) {
    opacity: 0.3;
    filter: blur(2px);
    transform: scale(0.95) !important;
    transition: all 0.3s ease;
}

/* 카드 컨테이너 전체 호버 효과 */
.cards-container {
    transition: all 0.3s ease;
}

.card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 71, 255, 0.5), transparent);
}

@keyframes scan {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(450px);
    }

    /* 420px에서 450px로 수정 */
}

.card-3d:nth-child(1) {
    left: 50px;
    top: 50px;
    transform: rotateY(-25deg) rotateX(5deg) translateZ(50px);
    z-index: 3;
    background: linear-gradient(135deg, #3730a3, #4338ca);
}

.card-3d:nth-child(2) {
    left: 280px;
    top: 50px;
    transform: rotateY(-15deg) rotateX(5deg) translateZ(100px);
    z-index: 4;
    background: linear-gradient(135deg, #2d2580, #362e9e);
}

.card-3d:nth-child(3) {
    left: 510px;
    top: 50px;
    transform: rotateY(-5deg) rotateX(5deg) translateZ(80px);
    z-index: 3;
    background: linear-gradient(135deg, #262256, #2d2580);
}

.card-3d:nth-child(4) {
    right: 50px;
    top: 50px;
    transform: rotateY(15deg) rotateX(5deg) translateZ(60px);
    z-index: 2;
    background: linear-gradient(135deg, #1a1635, #262256);
}

/* 카드 active 상태 개선 - 호버 수준으로 완화 */
.card-3d.active {
    opacity: 1;
    filter: blur(0);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 71, 255, 0.2),
        0 0 20px rgba(123, 104, 238, 0.1);
    border: 1.5px solid rgba(0, 71, 255, 0.3);
}

/* 활성 카드 글로우 애니메이션 */
@keyframes activeGlow {
    0% {
        box-shadow:
            0 40px 100px rgba(0, 0, 0, 0.7),
            0 0 150px rgba(0, 71, 255, 0.6),
            0 0 80px rgba(123, 104, 238, 0.3);
    }
    100% {
        box-shadow:
            0 45px 110px rgba(0, 0, 0, 0.8),
            0 0 180px rgba(0, 71, 255, 0.8),
            0 0 100px rgba(123, 104, 238, 0.5);
    }
}

.card-content {
    padding: 35px 30px;
    /* 패딩 조정 */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* 콘텐츠 균등 배치 */
}

.card-icon {
    font-size: 3rem; /* 48px */
    margin-bottom: 15px;
    /* 마진 감소 */
}

.card-title {
    font-size: 1.75rem; /* 28px */
    font-weight: 900;
    margin-bottom: 10px;
    /* 마진 감소 */
    color: #ffffff;
}

.card-subtitle {
    font-size: 0.8125rem; /* 13px */
    /* 폰트 크기 약간 감소 */
    color: #7B68EE;
    margin-bottom: 15px;
    /* 마진 감소 */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-description {
    font-size: 0.875rem; /* 14px */
    /* 폰트 크기 약간 감소 */
    line-height: 1.5;
    /* 줄간격 조정 */
    color: #a8b2d1;
    margin-bottom: 20px;
    /* 마진 감소 */
    flex-grow: 1;
}

.card-stats {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    /* 패딩 감소 */
    margin-bottom: 20px;
    /* 버튼을 위한 공간 확보 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    flex: 1;
}

.stat-value {
    font-size: 1.375rem; /* 22px */
    /* 폰트 크기 약간 감소 */
    font-weight: 900;
    color: #0047FF;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 0.6875rem; /* 11px */
    /* 폰트 크기 약간 감소 */
    color: #7a8398;
    text-transform: uppercase;
}

.card-button {
    background: rgba(0, 71, 255, 0.2);
    border: 1px solid rgba(0, 71, 255, 0.4);
    color: #0047FF;
    padding: 10px 20px;
    /* 패딩 조정 */
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8125rem; /* 13px */
    /* 폰트 크기 약간 감소 */
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
    /* 하단에 고정 */
}

.card-button:hover {
    background: rgba(0, 71, 255, 0.3);
    border-color: #0047FF;
    transform: translateX(5px);
}

/* Section Base Styles */
.section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 71, 255, 0.1);
    border: 1px solid rgba(0, 71, 255, 0.3);
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 1rem; /* 16px */
    color: #0047FF;
    margin-bottom: 20px;
    font-weight: 600;
    transform: scale(1.5);
    transform-origin: center;
    box-shadow: 0 0 15px rgba(0, 71, 255, 0.2),
                0 0 30px rgba(0, 71, 255, 0.1),
                inset 0 0 10px rgba(0, 71, 255, 0.05);
    text-shadow: 0 0 8px rgba(0, 71, 255, 0.3);
    transition: all 0.3s ease;
}

.section-badge:hover {
    box-shadow: 0 0 20px rgba(0, 71, 255, 0.3),
                0 0 40px rgba(0, 71, 255, 0.2),
                inset 0 0 15px rgba(0, 71, 255, 0.1);
    text-shadow: 0 0 12px rgba(0, 71, 255, 0.4);
}

.section-title {
    font-size: 3rem; /* 48px */
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #a8b2d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.125rem; /* 18px */
    color: #a8b2d1;
    line-height: 1.6;
}

/* SIEM Section */
#siem {
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.05) 0%, transparent 50%);
}

.siem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.siem-features {
    display: grid;
    gap: 30px;
}

.siem-feature {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(36, 43, 77, 0.8));
    border: 1px solid rgba(0, 71, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.siem-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 71, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.siem-feature:hover::before {
    left: 100%;
}

.siem-feature:hover {
    transform: translateX(10px);
    border-color: #0047FF;
    box-shadow: 0 10px 30px rgba(0, 71, 255, 0.2);
}

.siem-feature h4 {
    font-size: 1.25rem; /* 20px */
    margin-bottom: 10px;
    color: #ffffff;
}

.siem-feature p {
    color: #a8b2d1;
    line-height: 1.6;
}

.siem-visual {
    position: relative;
    height: 500px;
}

.siem-card {
    position: absolute;
    background: linear-gradient(135deg, #1a1f3a, #242b4d);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 71, 255, 0.2);
    transition: all 0.3s ease;
}

.siem-card:nth-child(1) {
    width: 280px;
    top: 20px;
    left: 20px;
    transform: rotate(-5deg);
    z-index: 1;
}

.siem-card:nth-child(2) {
    width: 300px;
    top: 100px;
    right: 20px;
    transform: rotate(3deg);
    z-index: 2;
    background: linear-gradient(135deg, #2a2f4a, #343b5d);
}

.siem-card:nth-child(3) {
    width: 320px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    z-index: 3;
}

.siem-card:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* SIEM 대시보드 카드 스타일 */
.siem-card.dashboard-card {
    background: linear-gradient(145deg, #1e2444, #2a3154);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.5),
        inset 0 2px 5px rgba(255, 255, 255, 0.1),
        0 0 60px rgba(0, 71, 255, 0.1);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.metric-widget {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(0, 71, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.widget-icon {
    font-size: 1rem; /* 16px */
}

.widget-title {
    font-size: 0.6875rem; /* 11px */
    color: #7a8398;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-value {
    font-size: 1.75rem; /* 28px */
    font-weight: 900;
    color: #0047FF;
    margin-bottom: 5px;
}

.widget-suffix {
    font-size: 0.875rem; /* 14px */
    color: #7a8398;
    display: inline-block;
    margin-left: 5px;
}

.widget-chart-area {
    height: 40px;
    margin-top: 10px;
}

.widget-chart {
    width: 100%;
    height: 100%;
}

.chart-line {
    fill: none;
    stroke: #0047FF;
    stroke-width: 2;
    stroke-linecap: round;
    filter: drop-shadow(0 0 4px rgba(0, 71, 255, 0.5));
}

.widget-spark {
    display: flex;
    align-items: flex-end;
    height: 30px;
    gap: 3px;
    margin-top: 10px;
}

.spark-bar {
    flex: 1;
    background: linear-gradient(to top, #0047FF, #7B68EE);
    border-radius: 2px 2px 0 0;
    transition: height 0.3s ease;
}

/* Security Card */
.siem-card.security-card {
    background: linear-gradient(145deg, #242b4d, #2e3560);
    display: flex;
    flex-direction: column;
}

.security-header {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 71, 255, 0.2);
    margin-bottom: 15px;
}

.security-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem; /* 13px */
    color: #a8b2d1;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.7;
        transform: scale(1.5);
    }
}

.threat-indicators {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.threat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.threat-item:hover {
    background: rgba(0, 71, 255, 0.1);
    transform: translateX(5px);
}

.threat-icon {
    font-size: 1.5rem; /* 24px */
}

.threat-info {
    flex: 1;
}

.threat-name {
    font-size: 0.75rem; /* 12px */
    color: #7a8398;
    margin-bottom: 3px;
}

.threat-count {
    font-size: 1.25rem; /* 20px */
    font-weight: 700;
    color: #ffffff;
}

/* Analytics Card */
.siem-card.analytics-card {
    background: linear-gradient(145deg, #2a2f4a, #343b5d);
    text-align: center;
}

.analytics-header {
    margin-bottom: 20px;
}

.analytics-title {
    display: block;
    font-size: 0.875rem; /* 14px */
    color: #7a8398;
    margin-bottom: 10px;
}

.analytics-value {
    font-size: 2.25rem; /* 36px */
    font-weight: 900;
    color: #0047FF;
}

.analytics-unit {
    font-size: 1.25rem; /* 20px */
    color: #7a8398;
    margin-left: 5px;
}

.circular-progress {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
}

.progress-bg {
    fill: none;
    stroke: rgba(0, 71, 255, 0.1);
    stroke-width: 8;
}

.progress-fill {
    fill: none;
    stroke: #0047FF;
    stroke-width: 8;
    stroke-dasharray: 283;
    stroke-dashoffset: 3;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 1s ease;
    filter: drop-shadow(0 0 10px rgba(0, 71, 255, 0.5));
}

.analytics-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.6875rem; /* 11px */
    color: #7a8398;
    margin-bottom: 5px;
}

.stat-val {
    font-size: 1.125rem; /* 18px */
    font-weight: 700;
    color: #ffffff;
}

/* SOAR Section */
#soar {
    background: linear-gradient(135deg, transparent 50%, rgba(123, 104, 238, 0.05) 100%);
}

.soar-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: stretch;
}

/* SOAR n8n 스타일 워크플로우 */
.workflow-container {
    background: linear-gradient(135deg, #1a1f3a, #242b4d);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 71, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.workflow-canvas {
    position: relative;
    height: 450px;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 71, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(123, 104, 238, 0.1) 0%, transparent 50%);
}

.workflow-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flow-path {
    fill: none;
    stroke: url(#lineGradient);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    opacity: 0.6;
    filter: url(#glow);
    animation: flowAnimation 2s linear infinite;
}

@keyframes flowAnimation {
    to {
        stroke-dashoffset: -10;
    }
}

.flow-dot {
    filter: drop-shadow(0 0 6px #00FF88);
}

.workflow-nodes {
    position: relative;
    height: 100%;
}

.n8n-node {
    position: absolute;
    background: linear-gradient(135deg, #2a3154, #343d68);
    border: 2px solid rgba(0, 71, 255, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.1);
}

.n8n-node:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: #0047FF;
    box-shadow:
        0 10px 30px rgba(0, 71, 255, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.2);
}

.n8n-node.active {
    border-color: #00FF88;
    background: linear-gradient(135deg, #2a3154, #0047FF);
    animation: nodeActive 2s ease-in-out;
}

@keyframes nodeActive {

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

    50% {
        transform: scale(1.1);
    }
}

.node-icon {
    font-size: 1.5rem; /* 24px */
    margin-bottom: 8px;
}

.node-title {
    font-size: 0.8125rem; /* 13px */
    font-weight: 600;
    color: #ffffff;
}

.node-status {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: 2px solid #2a3154;
}

.node-status.active {
    background: #00FF88;
}

.execution-badge {
    position: absolute;
    background: #FF6B6B;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem; /* 12px */
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    z-index: 10;
}

#exec1 {
    top: 45px;
    left: 140px;
}

#exec2 {
    top: 145px;
    left: 340px;
}

/* 노드 타입별 색상 */
.trigger-node {
    background: linear-gradient(135deg, #FF6B6B, #ee5a6f);
}

.process-node {
    background: linear-gradient(135deg, #4ECDC4, #44a3aa);
}

.analyze-node {
    background: linear-gradient(135deg, #FFD93D, #e6c235);
}

.decision-node {
    background: linear-gradient(135deg, #0047FF, #7B68EE);
}

.action-node {
    background: linear-gradient(135deg, #00FF88, #00cc6a);
}

.report-node {
    background: linear-gradient(135deg, #B388FF, #7C4DFF);
}

.soar-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    grid-template-rows: 1fr 1fr;
}

.soar-feature {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(26, 31, 58, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(0, 71, 255, 0.1);
    transition: all 0.3s ease;
}

.soar-feature:hover {
    background: rgba(26, 31, 58, 0.8);
    border-color: rgba(0, 71, 255, 0.3);
    transform: translateX(10px);
}

.soar-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0047FF, #7B68EE);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem; /* 24px */
    flex-shrink: 0;
}

/* MDR Section */
#mdr {
    position: relative;
    overflow: hidden;
}

.mdr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.mdr-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.9), rgba(36, 43, 77, 0.9));
    border: 1px solid rgba(0, 71, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mdr-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 71, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mdr-card:hover::before {
    opacity: 1;
}

.mdr-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #0047FF;
    box-shadow: 0 20px 50px rgba(0, 71, 255, 0.3);
}

.mdr-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0047FF, #7B68EE);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem; /* 28px */
    margin-bottom: 20px;
}

.mdr-title {
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.mdr-description {
    color: #a8b2d1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mdr-list {
    list-style: none;
}

.mdr-list li {
    padding: 8px 0;
    color: #a8b2d1;
    position: relative;
    padding-left: 25px;
}

.mdr-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0047FF;
    font-weight: bold;
}

/* Platform Section */
#platform {
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.03) 0%, transparent 50%);
}

.platform-showcase {
    position: relative;
    margin-top: 80px;
}

/* Platform Dashboard 스타일 */
.dashboard-preview {
    background: linear-gradient(135deg, #1a1f3a, #242b4d);
    border-radius: 20px;
    padding: 0;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 71, 255, 0.2);
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 71, 255, 0.1);
}

.dashboard-title {
    flex: 1;
    text-align: center;
    font-size: 0.875rem; /* 14px */
    color: #7a8398;
    font-weight: 600;
}

.dashboard-time {
    font-size: 0.875rem; /* 14px */
    color: #00FF88;
    font-family: 'Courier New', monospace;
    font-weight: 700;
}

.window-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-control:nth-child(1) {
    background: #ff5f57;
}

.window-control:nth-child(2) {
    background: #ffbd2e;
}

.window-control:nth-child(3) {
    background: #28ca42;
}

.dashboard-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.dashboard-widget {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 71, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-widget.large-widget {
    grid-column: span 2;
    grid-row: span 2;
}

.dashboard-widget:hover {
    background: rgba(0, 71, 255, 0.05);
    border-color: rgba(0, 71, 255, 0.3);
    transform: translateY(-2px);
}

.widget-status {
    font-size: 0.6875rem; /* 11px */
    color: #00FF88;
    background: rgba(0, 255, 136, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

.widget-change {
    font-size: 0.875rem; /* 14px */
    font-weight: 600;
    margin-bottom: 15px;
}

.widget-change.positive {
    color: #00FF88;
}

.widget-change.positive::before {
    content: '↑ ';
}

.widget-change.negative {
    color: #FF6B6B;
}

.widget-change.negative::before {
    content: '↓ ';
}

/* 차트 컨테이너 */
.chart-container {
    height: 200px;
    position: relative;
    margin-bottom: 20px;
}

#threatChart {
    width: 100% !important;
    height: 100% !important;
}

/* 미니 바 차트 */
.mini-bars {
    display: flex;
    align-items: flex-end;
    height: 40px;
    gap: 4px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, #0047FF, #7B68EE);
    border-radius: 2px 2px 0 0;
    transition: height 0.3s ease;
}

@keyframes barPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* 원형 미터 */
.circular-meter {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
}

.meter-bg {
    fill: none;
    stroke: rgba(0, 71, 255, 0.1);
    stroke-width: 8;
}

.meter-fill {
    fill: none;
    stroke: #0047FF;
    stroke-width: 8;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 1s ease;
    filter: drop-shadow(0 0 10px rgba(0, 71, 255, 0.5));
}

.meter-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.125rem; /* 18px */
    font-weight: 700;
    color: #0047FF;
}

/* 알림 리스트 */
.alert-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-size: 0.75rem; /* 12px */
    transition: all 0.3s ease;
}

.alert-item:hover {
    transform: translateX(5px);
}

.alert-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.alert-item.critical .alert-dot {
    background: #FF6B6B;
}

.alert-item.warning .alert-dot {
    background: #FFD93D;
}

.alert-item.info .alert-dot {
    background: #4ECDC4;
}

.alert-text {
    color: #a8b2d1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 시스템 상태 */
.system-status {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-name {
    font-size: 0.8125rem; /* 13px */
    color: #a8b2d1;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.online {
    background: #00FF88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.status-indicator.warning {
    background: #FFD93D;
    box-shadow: 0 0 10px rgba(255, 217, 61, 0.5);
}

.status-indicator.offline {
    background: #FF6B6B;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

/* 업타임 그리드 */
.uptime-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin: 15px 0 10px;
}

.uptime-day {
    height: 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.uptime-day.online {
    background: #00FF88;
    opacity: 0.8;
}

.uptime-day.warning {
    background: #FFD93D;
    opacity: 0.8;
}

.uptime-day.offline {
    background: #FF6B6B;
    opacity: 0.8;
}

.uptime-day:hover {
    opacity: 1;
    transform: scale(1.1);
}

.uptime-label {
    font-size: 0.6875rem; /* 11px */
    color: #7a8398;
    text-align: center;
}

/* 위젯 통계 */
.widget-stats {
    display: flex;
    justify-content: space-around;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-stat {
    text-align: center;
}

.mini-label {
    display: block;
    font-size: 0.6875rem; /* 11px */
    color: #7a8398;
    margin-bottom: 5px;
}

.mini-value {
    font-size: 1.125rem; /* 18px */
    font-weight: 700;
    color: #ffffff;
}

/* Pricing Section */
#pricing {
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.9), rgba(36, 43, 77, 0.9));
    border: 2px solid rgba(0, 71, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: #0047FF;
    background: linear-gradient(135deg, rgba(0, 71, 255, 0.1), rgba(123, 104, 238, 0.1));
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0047FF, #7B68EE);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem; /* 12px */
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #0047FF;
    box-shadow: 0 20px 50px rgba(0, 71, 255, 0.3);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.07);
}

.pricing-tier {
    font-size: 1.25rem; /* 20px */
    color: #7B68EE;
    margin-bottom: 10px;
    font-weight: 600;
}

.pricing-price {
    font-size: 3rem; /* 48px */
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
}

.pricing-price span {
    font-size: 1.25rem; /* 20px */
    color: #7a8398;
}

.pricing-description {
    color: #a8b2d1;
    margin-bottom: 30px;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    color: #a8b2d1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 25px;
    text-align: left;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0047FF;
    font-weight: bold;
}

.pricing-button {
    width: 100%;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card .pricing-button {
    background: transparent;
    color: #0047FF;
    border-color: rgba(0, 71, 255, 0.3);
}

.pricing-card.featured .pricing-button {
    background: linear-gradient(135deg, #0047FF, #7B68EE);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 71, 255, 0.3);
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 71, 255, 0.4);
}

/* Company Section */
#company {
    background: linear-gradient(135deg, transparent 50%, rgba(0, 71, 255, 0.03) 100%);
}

.company-container {
    display: grid;
    grid-template-columns: 54fr 46fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 5%;
}

.company-left {
    padding-right: 20px;
}

.company-left .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.company-right {
    padding-left: 20px;
}

.company-features-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 20px;
}

.company-features-table td {
    padding: 18px 20px;
    background: rgba(0, 71, 255, 0.05);
    border: 1px solid rgba(0, 71, 255, 0.1);
    border-bottom: none;
    transition: all 0.3s ease;
}

.company-features-table tr:first-child td {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.company-features-table tr:last-child td {
    border-bottom: 1px solid rgba(0, 71, 255, 0.1);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.company-features-table tr:hover td {
    background: rgba(0, 71, 255, 0.1);
    transform: translateX(10px);
}

.feature-icon {
    color: #0047FF;
    font-size: 1.125rem; /* 18px */
    margin-right: 12px;
    font-weight: bold;
}

.feature-text {
    color: #e6e9f0;
    font-size: 1.0625rem; /* 17px */
    line-height: 1.5;
}

/* Table Header Row Styling */
.table-header-row td {
    background: rgba(0, 71, 255, 0.15) !important;
    border-color: rgba(0, 71, 255, 0.3) !important;
}

.table-header-row .feature-text {
    font-size: 1.25rem; /* 20px */
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3),
                 0 0 10px rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

.table-header-row:hover td {
    transform: none !important;
}

.company-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.company-info h3 {
    font-size: 2rem; /* 32px */
    margin-bottom: 20px;
    color: #ffffff;
}

.company-info p {
    color: #a8b2d1;
    line-height: 1.8;
    margin-bottom: 20px;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.company-stat {
    padding: 25px;
    background: rgba(0, 71, 255, 0.05);
    border: 1px solid rgba(0, 71, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.company-stat:hover {
    background: rgba(0, 71, 255, 0.1);
    transform: scale(1.05);
}

.company-stat-value {
    font-size: 2.25rem; /* 36px */
    font-weight: 900;
    color: #0047FF;
    margin-bottom: 5px;
}

.company-stat-label {
    font-size: 0.875rem; /* 14px */
    color: #7a8398;
    text-transform: uppercase;
}

/* Company List Table Styles */
.company-list-table {
    margin-top: 40px;
}

.company-info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.company-info-table td {
    padding: 20px 25px;
    background: rgba(0, 71, 255, 0.05);
    border: 1px solid rgba(0, 71, 255, 0.1);
    border-bottom: none;
    transition: all 0.3s ease;
}

.company-info-table tr:first-child td {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.company-info-table tr:last-child td {
    border-bottom: 1px solid rgba(0, 71, 255, 0.1);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.company-info-table tr:hover td {
    background: rgba(0, 71, 255, 0.1);
    transform: translateX(10px);
}

.list-icon {
    color: #0047FF;
    font-size: 1.25rem; /* 20px */
    margin-right: 15px;
    font-weight: bold;
}

.list-text {
    color: #e6e9f0;
    font-size: 1rem; /* 16px */
    line-height: 1.6;
}

.company-visual {
    position: relative;
    height: 500px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    transform: rotate(-5deg);
}

.team-member {
    background: linear-gradient(135deg, #1a1f3a, #242b4d);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(0, 71, 255, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(0, 71, 255, 0.3);
}

.team-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0047FF, #7B68EE);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem; /* 24px */
}

.team-name {
    font-size: 1rem; /* 16px */
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.75rem; /* 12px */
    color: #7a8398;
}

/* Contact Section */
#contact {
    padding: 100px 5% 50px;
    position: relative;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.9), rgba(36, 43, 77, 0.9));
    border: 1px solid rgba(0, 71, 255, 0.2);
    border-radius: 20px;
    padding: 50px;
    margin-top: 60px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    text-align: left;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    color: #a8b2d1;
    font-size: 1.0625rem; /* 17px */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 71, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1.0625rem; /* 17px */
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0047FF;
    background: rgba(0, 71, 255, 0.05);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background: linear-gradient(135deg, #0047FF, #7B68EE);
    color: white;
    padding: 18px 60px;
    border: none;
    border-radius: 30px;
    font-size: 1rem; /* 16px */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 71, 255, 0.4);
}

/* Clients Marquee */
.clients-section {
    padding: 80px 0;
    background: rgba(26, 31, 58, 0.5);
    border-top: 1px solid rgba(0, 71, 255, 0.1);
    border-bottom: 1px solid rgba(0, 71, 255, 0.1);
}

.clients-title {
    text-align: center;
    font-size: 1rem; /* 16px */
    color: #7a8398;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.clients-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
    border-radius: 10px;
    font-weight: 600;
    color: #a8b2d1;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.client-logo:hover {
    background: rgba(0, 71, 255, 0.1);
    border-color: rgba(0, 71, 255, 0.3);
    color: #0047FF;
}

/* Footer */
footer {
    padding: 60px 5%;
    background: rgba(10, 14, 39, 0.95);
    border-top: 1px solid rgba(0, 71, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-columns-right {
    display: contents;
}

.footer-brand h3 {
    font-size: 1.75rem; /* 28px */
    margin-bottom: 15px;
    background: linear-gradient(135deg, #0047FF, #7B68EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: #7a8398;
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 1rem; /* 16px */
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #7a8398;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #0047FF;
}

/* Company Info Styling */
.footer-column.company-info .company-details li {
    color: #7a8398;
    margin-bottom: 8px;
    font-size: 0.875rem; /* 14px */
    line-height: 1.4;
}

/* 회사 정보 섹션 스타일 */
.company-info-section {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-info-section .copyright {
    color: #e5e7eb;
    font-size: 0.9375rem; /* 15px */
    font-weight: bold;
    margin-bottom: 10px;
}

.company-info-section .company-details p {
    color: #d1d5db;
    font-size: 0.9375rem; /* 15px */
    font-weight: normal;
    line-height: 1.4;
    margin-bottom: 3px;
}

/* Glow Effects */
.glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 71, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {

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

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

.glow-1 {
    top: 10%;
    left: 10%;
}

.glow-2 {
    bottom: 20%;
    right: 15%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 1200px) {
    .cards-container {
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 20px;
        perspective: none;
    }

    .card-3d {
        position: relative;
        transform: none !important;
        width: 100%;
        height: auto;
        min-height: 400px;
        left: auto !important;
        right: auto !important;
        top: auto !important;
    }

    .siem-content,
    .company-content {
        grid-template-columns: 1fr;
    }

    .company-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .company-left,
    .company-right {
        padding-left: 0;
        padding-right: 0;
    }

    .company-left .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .company-left .section-header .section-badge {
        justify-content: center;
        margin: 0 auto 20px auto;
    }

    .company-info {
        margin-bottom: 40px;
    }

    .company-right {
        margin-top: 40px;
    }

    .soar-content {
        gap: 40px;
    }

    .soar-features {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 60px auto;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .hero-video-wrapper {
        max-width: 100%;
    }

    .hero-right {
        text-align: center;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .card-3d {
        min-height: 360px;
        max-width: 450px;
        margin: 0 auto;
    }

    .company-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* SOAR 워크플로우 숨김 (모바일) */
    .workflow-container {
        display: none;
    }

    .hero-right .hero-buttons {
        justify-content: center;
    }

    h1 {
        font-size: 3rem; /* 48px */
    }

    .section-title {
        font-size: 2.25rem; /* 36px */
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .mdr-grid {
        grid-template-columns: 1fr;
    }

    .company-stats {
        grid-template-columns: 1fr;
    }
}
