.elementor-25326 .elementor-element.elementor-element-4ec1f98{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-723a17e *//* 감정 파티클 배경 효과 */
        #emotion-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        

        
        /* 히어로 섹션 */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--bg-beige) 0%, rgba(232, 245, 240, 0.5) 100%);
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 80px;
        }
        
        /* 따뜻한 빛 효과 */
        .warm-light {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(240, 181, 160, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            right: -200px;
            top: 50%;
            transform: translateY(-50%);
            animation: breathe 8s ease-in-out infinite;
        }
        
        @keyframes breathe {
            0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.6; }
            50% { transform: translateY(-50%) scale(1.1); opacity: 0.8; }
        }
        
        .hero-content {
            flex: 1;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 48px;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.3;
            margin-bottom: 24px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }
        
        .hero-subtitle {
            font-family: 'Noto Sans KR', sans-serif;
            font-size: 20px;
            font-weight: 400;
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.6s forwards;
        }
        
        .btn-primary {
            background: var(--primary-color);
            color: white;
            padding: 16px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(107, 155, 155, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--primary-color);
            padding: 16px 32px;
            border: 2px solid var(--primary-color);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        /* 히어로 일러스트 */
        .hero-illustration {
            position: absolute;
            right: 50px;
            bottom: 50px;
            width: 400px;
            height: 400px;
            opacity: 0.3;
        }
        
        .window-illustration {
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath fill='none' stroke='%236B9B9B' stroke-width='2' d='M100 50 h200 a20 20 0 0 1 20 20 v260 a20 20 0 0 1 -20 20 h-200 a20 20 0 0 1 -20 -20 v-260 a20 20 0 0 1 20 -20 z'/%3E%3Cline x1='100' y1='120' x2='300' y2='120' stroke='%236B9B9B' stroke-width='2'/%3E%3Cline x1='200' y1='50' x2='200' y2='350' stroke='%236B9B9B' stroke-width='2'/%3E%3Ccircle cx='200' cy='200' r='50' fill='none' stroke='%23F0B5A0' stroke-width='2' opacity='0.5'/%3E%3C/svg%3E");
            animation: floatGentle 10s ease-in-out infinite;
        }
        
        @keyframes floatGentle {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        /* 신뢰 구축 섹션 */
        .trust-section {
            padding: 100px 0;
            background: white;
            position: relative;
        }
        
        .section-title {
            font-size: 32px;
            font-weight: 500;
            text-align: center;
            color: var(--text-dark);
            margin-bottom: 60px;
            position: relative;
        }
        
        .trust-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .trust-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .trust-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
            transform: rotate(45deg);
        }
        
        .trust-card:hover::before {
            opacity: 0.05;
        }
        
        .trust-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .trust-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            position: relative;
        }
        
        .trust-icon svg {
            width: 100%;
            height: 100%;
            stroke: var(--primary-color);
            fill: none;
            stroke-width: 2;
        }
        
        .trust-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
        
        .trust-description {
            color: var(--text-gray);
            font-size: 16px;
        }
        
        /* 빠른 진단 섹션 */
        .diagnosis-section {
            padding: 100px 0;
            background: linear-gradient(180deg, rgba(168, 143, 179, 0.05) 0%, rgba(168, 143, 179, 0.1) 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* 유기적 도형 배경 */
        .organic-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(168, 143, 179, 0.1);
            filter: blur(60px);
        }
        
        .shape1 {
            width: 400px;
            height: 400px;
            top: -200px;
            left: -100px;
            animation: morphing 20s ease-in-out infinite;
        }
        
        .shape2 {
            width: 300px;
            height: 300px;
            bottom: -150px;
            right: -50px;
            animation: morphing 25s ease-in-out infinite reverse;
        }
        
        @keyframes morphing {
            0%, 100% {
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
                transform: rotate(0deg);
            }
            50% {
                border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
                transform: rotate(180deg);
            }
        }
        
        .diagnosis-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .diagnosis-title {
            font-size: 36px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
        }
        
        .diagnosis-subtitle {
            font-size: 18px;
            color: var(--text-gray);
            margin-bottom: 40px;
        }
        
        .diagnosis-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--secondary-color);
            color: white;
            padding: 20px 48px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(168, 143, 179, 0.3);
        }
        
        .diagnosis-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(168, 143, 179, 0.4);
        }
        
        .diagnosis-button svg {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
        }
        
        .diagnosis-button:hover svg {
            transform: translateX(5px);
        }
        
        /* 감정 체크 인터랙티브 섹션 */
        .emotion-check {
            padding: 80px 0;
            background: white;
        }
        
        .emotion-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .emotion-card {
            background: var(--bg-beige);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .emotion-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--secondary-color);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.5s ease;
            opacity: 0.1;
        }
        
        .emotion-card:hover::before {
            width: 200px;
            height: 200px;
        }
        
        .emotion-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .emotion-emoji {
            font-size: 48px;
            margin-bottom: 12px;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .emotion-card:hover .emotion-emoji {
            transform: scale(1.2) rotate(10deg);
        }
        
        .emotion-text {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-dark);
        }
        
        /* 콘텐츠 미리보기 섹션 */
        .content-preview {
            padding: 100px 0;
            background: var(--bg-beige);
        }
        
        .content-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        
        .tab {
            padding: 12px 28px;
            background: white;
            border: 2px solid transparent;
            border-radius: 30px;
            color: var(--text-gray);
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .tab.active {
            background: var(--primary-color);
            color: white;
            transform: scale(1.05);
        }
        
        .tab:hover {
            border-color: var(--primary-color);
        }
        
        .content-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .content-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .content-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .content-image {
            height: 200px;
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .content-image::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.2;
        }
        
        .content-body {
            padding: 30px;
        }
        
        .content-category {
            display: inline-block;
            background: rgba(168, 143, 179, 0.1);
            color: var(--secondary-color);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .content-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
            line-height: 1.4;
        }
        
        .content-excerpt {
            color: var(--text-gray);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 16px;
        }
        
        .content-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: #999;
        }
        
        .read-time {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .heart-count {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--secondary-color);
        }
        
        /* 상담 후기 섹션 */
        .testimonials {
            padding: 100px 0;
            background: white;
            position: relative;
        }
        
        .testimonial-slider {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial-card {
            background: linear-gradient(135deg, var(--bg-beige) 0%, rgba(168, 143, 179, 0.05) 100%);
            padding: 60px;
            border-radius: 30px;
            text-align: center;
            position: relative;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }
        
        .quote-mark {
            position: absolute;
            top: 30px;
            left: 40px;
            font-size: 80px;
            color: var(--secondary-color);
            opacity: 0.2;
            font-family: Georgia, serif;
        }
        
        .testimonial-text {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 30px;
            font-style: italic;
        }
        
        .testimonial-author {
            font-size: 16px;
            color: var(--text-gray);
            font-weight: 500;
        }
        
        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background: var(--primary-color);
            width: 30px;
            border-radius: 5px;
        }
        
        /* CTA 섹션 */
        .cta-section {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-title {
            font-size: 42px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
        }
        
        .cta-button {
            display: inline-block;
            background: white;
            color: var(--primary-color);
            padding: 18px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        
        /* 떠다니는 하트 애니메이션 */
        .floating-hearts {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            pointer-events: none;
        }
        
        .heart {
            position: absolute;
            font-size: 20px;
            color: rgba(255, 255, 255, 0.3);
            animation: floatHeart linear infinite;
        }
        
        @keyframes floatHeart {
            from {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            to {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        
        /* 플로팅 상담 버튼 */
        .floating-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-color);
            color: white;
            padding: 16px 30px;
            border-radius: 50px;
            box-shadow: 0 8px 30px rgba(107, 155, 155, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            opacity: 0;
            transform: translateY(100px);
        }
        
        .floating-cta.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .floating-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 40px rgba(107, 155, 155, 0.5);
        }
        
        .floating-cta svg {
            width: 20px;
            height: 20px;
        }
        
        /* 반응형 */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hero-title {
                font-size: 32px;
            }
            
            .hero-subtitle {
                font-size: 18px;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 16px;
            }
            
            .hero-illustration {
                display: none;
            }
            
            .trust-cards {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .emotion-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .content-cards {
                grid-template-columns: 1fr;
            }
            
            .testimonial-card {
                padding: 40px 30px;
            }
            
            .cta-title {
                font-size: 32px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        
        /* 애니메이션 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 스크롤 애니메이션 */
        .scroll-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }
        
        .scroll-animate.show {
            opacity: 1;
            transform: translateY(0);
        }/* End custom CSS */
/* Start custom CSS */html, body {
    overflow-x: hidden;
}/* End custom CSS */