.elementor-6592 .elementor-element.elementor-element-6c17c08{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-b8755b5 */.container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
        }
        
        /* 페이지 헤더 - 심플하게 개선 */
        .page-header {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-hover) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
            color: white;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(30px, -30px) rotate(180deg); }
        }
        
        .page-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.03em;
            position: relative;
            z-index: 1;
        }
        
        .page-subtitle {
            font-size: 1.25rem;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        /* 서비스 개요 섹션 */
        .services-overview {
            padding: var(--section-padding) 0;
            background: white;
        }
        
        .overview-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 60px;
        }
        
        .overview-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-dark);
        }
        
        .overview-desc {
            font-size: 1.25rem;
            color: var(--gray-500);
            line-height: 1.8;
        }
        
        /* 서비스 그리드 - 4개 한 줄로 개선 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        
        .service-preview {
            background: var(--gray-100);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-preview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent-blue);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .service-preview:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }
        
        .service-preview:hover::before {
            transform: scaleX(1);
        }
        
        .service-preview-icon {
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .service-preview-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--primary-dark);
        }
        
        .service-preview-desc {
            font-size: 0.9375rem;
            color: var(--gray-500);
            margin-bottom: 1.25rem;
            line-height: 1.5;
        }
        
        .service-preview-link {
            color: var(--accent-blue);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9375rem;
            transition: gap 0.3s ease;
        }

        .service-preview-link:hover {
            gap: 10px;
        }
        
        /* 서비스 상세 섹션 - 더 컴팩트하게 */
        .service-detail {
            padding: 100px 0;
            position: relative;
        }
        
        .service-detail:nth-child(even) {
            background: var(--gray-100);
        }
        
        .service-detail-wrapper {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }
        
        .service-detail-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        
        .service-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: var(--accent-blue);
            color: white;
            border-radius: 50%;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .service-detail-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .service-detail-desc {
            font-size: 1.125rem;
            color: var(--gray-500);
            margin-bottom: 2rem;
            line-height: 1.7;
        }
        
        .service-features {
            list-style: none;
            margin-bottom: 2.5rem;
        }
        
        .service-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem 0;
            font-size: 1rem;
        }
        
        .service-features li::before {
            content: '✓';
            width: 24px;
            height: 24px;
            background: rgba(0, 102, 255, 0.1);
            color: var(--accent-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-weight: 700;
            margin-top: 2px;
        }
        
        /* 프로세스 섹션 */
        .process-section {
            margin: 3rem -60px 0;
            padding: 3rem 60px;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 102, 255, 0.08) 100%);
            position: relative;
            overflow: hidden;
            border-radius: 0;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
            filter: blur(60px);
        }

        .process-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .process-timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 35px;
            left: 60px;
            right: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-hover) 100%);
            opacity: 0.2;
            z-index: 0;
        }

        .process-item {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .process-icon {
            width: 70px;
            height: 70px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-blue);
            position: relative;
            transition: all 0.3s ease;
        }

        .process-item:hover .process-icon {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 12px 32px rgba(0, 102, 255, 0.25);
        }

        .process-label {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--primary-dark);
        }

        .process-duration {
            font-size: 0.875rem;
            color: var(--accent-blue);
            font-weight: 600;
        }

        .process-desc {
            font-size: 0.875rem;
            color: var(--gray-500);
            margin-top: 0.5rem;
            max-width: 220px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }
        
        /* 가격 정보 - 2개로 단순화 */
        .pricing-info {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            margin-top: 2rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        
        .price-card {
            text-align: center;
            padding: 2rem;
            background: var(--gray-100);
            border-radius: 16px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .price-card:hover {
            border-color: var(--accent-blue);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
        }

        .price-card.featured {
            border-color: var(--accent-blue);
            background: white;
            position: relative;
        }

        .price-card.featured::before {
            content: '추천';
            position: absolute;
            top: -10px;
            right: 20px;
            background: var(--accent-blue);
            color: white;
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .price-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .price-amount {
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-blue);
            margin-bottom: 1rem;
        }
        
        .price-amount span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--gray-500);
        }
        
        .price-features {
            font-size: 0.9375rem;
            color: var(--gray-500);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .price-cta {
            display: inline-block;
            padding: 10px 24px;
            background: white;
            color: var(--accent-blue);
            border: 2px solid var(--accent-blue);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9375rem;
            transition: all 0.3s ease;
        }

        .price-card.featured .price-cta {
            background: var(--accent-blue);
            color: white;
        }
        
        .price-cta:hover {
            background: var(--accent-blue);
            color: white;
            transform: translateY(-2px);
        }
        
        /* FAQ 섹션 개선 */
        .faq-section {
            padding: var(--section-padding) 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
        }
        
        .faq-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .faq-title {
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .faq-list {
            display: grid;
            gap: 1rem;
        }
        
        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            background: rgba(255, 255, 255, 0.08);
        }
        
        .faq-question {
            padding: 1.5rem 2rem;
            font-size: 1.125rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }
        
        .faq-question span {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question span {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            padding: 0 2rem 1.5rem;
            max-height: 300px;
        }
        
        /* CTA 섹션 */
        .services-cta {
            padding: var(--section-padding) 0;
            background: white;
            text-align: center;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        
        .cta-title span {
            color: var(--accent-blue);
        }
        
        .cta-subtitle {
            font-size: 1.25rem;
            color: var(--gray-500);
            margin-bottom: 2.5rem;
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }
        
        .btn {
            padding: 16px 32px;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 1.0625rem;
        }
        
        .btn-primary {
            background: var(--accent-blue);
            color: white;
            box-shadow: 0 8px 24px rgba(0, 102, 255, 0.25);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 102, 255, 0.35);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--accent-blue);
            border: 2px solid var(--accent-blue);
        }
        
        .btn-outline:hover {
            background: var(--accent-blue);
            color: white;
        }
        
        /* 반응형 */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-detail-wrapper {
                gap: 40px;
            }
            
            .service-detail-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .process-section {
                margin: 3rem -24px 0;
                padding: 3rem 24px;
            }
            
            .process-timeline {
                flex-direction: column;
                gap: 2rem;
            }

            .process-timeline::before {
                display: none;
            }

            .process-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
        }/* End custom CSS */