.elementor-6564 .elementor-element.elementor-element-7d5ac5d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-494abc2 */.container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
        }
        
        /* 애니메이션 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.05); }
            66% { transform: translate(-20px, 20px) scale(0.95); }
        }
        
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* 페이지 헤더 - 더 다이나믹하게 */
        .page-header {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }
        
        .page-header-content {
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out;
        }
        
        .page-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 102, 255, 0.1);
            color: var(--accent-blue);
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 2rem;
            animation: slideDown 0.8s ease-out;
        }
        
        .page-title {
            font-size: clamp(3.5rem, 6vw, 5rem);
            font-weight: 800;
            margin-bottom: 2rem;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }
        
        .page-subtitle {
            font-size: 1.625rem;
            color: var(--gray-500);
            max-width: 700px;
            line-height: 1.6;
        }
        
        /* 소개 섹션 - 비주얼 강화 */
        .intro-section {
            padding: var(--section-padding) 0;
            background: white;
            position: relative;
        }
        
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .intro-content h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 2rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        
        .intro-content h2 span {
            background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .intro-text {
            font-size: 1.25rem;
            color: var(--gray-700);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .intro-text .highlight {
            color: var(--accent-blue);
            font-weight: 600;
            position: relative;
        }
        
        .intro-visual {
            position: relative;
        }
        
        .intro-card {
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-hover) 100%);
            color: white;
            padding: 3rem;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .intro-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 15s ease-in-out infinite reverse;
        }
        
        .intro-card-content {
            position: relative;
            z-index: 1;
        }
        
        .intro-card-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .intro-card-list {
            list-style: none;
            font-size: 1.125rem;
            line-height: 2;
        }
        
        .intro-card-list li::before {
            content: '→';
            margin-right: 0.75rem;
            opacity: 0.7;
        }
        
        /* 숫자로 보는 페이지라이터 - 더 세련되게 */
        .numbers-section {
            padding: var(--section-padding) 0;
            background: var(--gray-100);
            position: relative;
            overflow: hidden;
        }
        
        .numbers-section::before {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
            filter: blur(100px);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
        }
        
        .section-title {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .section-desc {
            font-size: 1.25rem;
            color: var(--gray-500);
        }
        
        .numbers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .number-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 24px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }
        
        .number-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-hover) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .number-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            border-color: var(--accent-blue);
        }
        
        .number-card:hover::before {
            transform: scaleX(1);
        }
        
        .number-value {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-hover) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }
        
        .number-label {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gray-700);
            margin-bottom: 0.5rem;
        }
        
        .number-desc {
            font-size: 0.9375rem;
            color: var(--gray-500);
            line-height: 1.5;
        }
        
        /* 우리의 방식 섹션 - 시각적 개선 */
        .approach-section {
            padding: var(--section-padding) 0;
            background: white;
        }
        
        .approach-badge {
            display: inline-block;
            background: var(--gray-100);
            color: var(--gray-700);
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .approach-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
            align-items: center;
        }
        
        .approach-content h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 2rem;
            line-height: 1.2;
        }
        
        .approach-list {
            list-style: none;
            margin-top: 3rem;
        }
        
        .approach-list li {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 1.5rem 0;
            font-size: 1.125rem;
            color: var(--gray-700);
            border-bottom: 1px solid var(--gray-100);
            transition: all 0.3s ease;
        }
        
        .approach-list li:hover {
            padding-left: 1rem;
            background: var(--gray-100);
            margin: 0 -1rem;
            padding-right: 1rem;
        }
        
        .approach-number {
            width: 32px;
            height: 32px;
            background: var(--accent-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-weight: 700;
            font-size: 0.875rem;
        }
        
        .approach-image {
            position: relative;
            height: 600px;
            background: var(--gray-100);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }
        
        .approach-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .approach-stat {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: white;
            padding: 1.5rem 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .approach-stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-blue);
        }
        
        .approach-stat-label {
            font-size: 0.875rem;
            color: var(--gray-500);
        }
        
        /* 연혁 섹션 - 개선된 지그재그 타임라인 */
        .history-section {
            padding: var(--section-padding) 0;
            background: linear-gradient(180deg, var(--gray-100) 0%, white 100%);
        }
        
        .history-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .history-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--accent-blue) 0%, var(--gray-200) 100%);
            transform: translateX(-50%);
        }
        
        .history-item {
            position: relative;
            padding: 3rem 0;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }
        
        .history-item:nth-child(odd) {
            justify-content: flex-start;
        }
        
        .history-item:nth-child(odd) .history-content {
            margin-right: auto;
            margin-left: 0;
            text-align: left;
        }
        
        .history-item:nth-child(even) .history-content {
            margin-left: auto;
            margin-right: 0;
            text-align: left;
        }
        
        .history-dot {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 24px;
            background: var(--accent-blue);
            border: 4px solid white;
            border-radius: 50%;
            z-index: 2;
            box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.2);
        }
        
        .history-content {
            width: 45%;
            padding: 2.5rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .history-content::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 30px;
            height: 2px;
            background: var(--gray-200);
            transform: translateY(-50%);
        }
        
        .history-item:nth-child(odd) .history-content::before {
            right: -30px;
        }
        
        .history-item:nth-child(even) .history-content::before {
            left: -30px;
        }
        
        .history-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
        }
        
        .history-year {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--accent-blue);
            margin-bottom: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .history-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--gray-700);
        }
        
        .history-desc {
            font-size: 1.0625rem;
            color: var(--gray-500);
            line-height: 1.6;
        }
        
        /* 팀 소개 - 더 시각적으로 */
        .team-section {
            padding: var(--section-padding) 0;
            background: white;
        }
        
        .team-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .team-intro p {
            font-size: 1.375rem;
            color: var(--gray-700);
            line-height: 1.8;
        }
        
        .team-showcase {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .team-photo {
            position: relative;
            height: 500px;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-hover) 100%);
            border-radius: 24px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .team-photo::before {
            content: '👍';
            font-size: 8rem;
            opacity: 1;
            color: white;
        }
        
        .team-values {
            display: grid;
            gap: 2rem;
        }
        
        .value-item {
            padding: 2rem;
            background: var(--gray-100);
            border-radius: 20px;
            display: flex;
            gap: 1.5rem;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .value-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .value-icon {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            flex-shrink: 0;
        }
        
        .value-content h3 {
            font-size: 1.375rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--gray-700);
        }
        
        .value-content p {
            color: var(--gray-500);
            line-height: 1.6;
        }
        
        /* 대표 메시지 - 카드 스타일 */
        .message-section {
            padding: var(--section-padding) 0;
            background: var(--gray-100);
        }
        
        .message-card {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 4rem;
            border-radius: 32px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        .message-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 8rem;
            color: var(--accent-blue);
            opacity: 0.1;
            font-weight: 700;
        }
        
        .message-content {
            position: relative;
            z-index: 1;
        }
        
        .message-text {
            font-size: 1.375rem;
            line-height: 1.8;
            color: var(--gray-700);
            margin-bottom: 3rem;
        }
        
        .message-author {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            background: var(--accent-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.25rem;
        }
        
        .author-info {
            flex: 1;
        }
        
        .author-name {
            font-weight: 700;
            font-size: 1.125rem;
            margin-bottom: 0.25rem;
        }
        
        .author-role {
            color: var(--gray-500);
        }
        
        /* CTA 섹션 - 전체 너비 그라데이션 배경 */
        .about-cta {
            padding: var(--section-padding) 0;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-hover) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
        }
        
        .about-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 25s ease-in-out infinite;
        }
        
        .about-cta::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            animation: float 30s ease-in-out infinite reverse;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .cta-title {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        .cta-subtitle {
            font-size: 1.5rem;
            opacity: 0.95;
            margin-bottom: 3rem;
            line-height: 1.6;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }
        
        .btn {
            padding: 18px 36px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 1.125rem;
        }
        
        .btn-primary {
            background: white;
            color: var(--accent-blue);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }
        
        /* 반응형 */
        @media (max-width: 1024px) {
            .numbers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
            }
            
            .page-title {
                font-size: 2.5rem;
            }
            
            .intro-grid,
            .approach-grid,
            .team-showcase {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .numbers-grid {
                grid-template-columns: 1fr;
            }
            
            .history-item {
                padding: 2rem 0;
            }
            
            .history-content {
                width: calc(100% - 60px);
                margin-left: 40px !important;
                margin-right: 0 !important;
            }
            
            .history-content::before {
                display: none;
            }
            
            .history-line {
                left: 20px;
            }
            
            .history-dot {
                left: 20px;
            }
            
            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
        }/* End custom CSS */