

        .partner-logo > img {
            max-width: 164px;
            height: auto;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            color: var(--primary);
            font-weight: 600;
            line-height: 1.2;
        }

        p {
            color: var(--text-light);
            margin-bottom: 1rem;
        }


        /* Buttons */
        .btn-primary {
            padding: 1rem 2rem;
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }

        .btn-secondary {
            padding: 1rem 2rem;
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--border);
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--gray-100);
            transform: translateY(-2px);
        }

        /* Section Styles */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-subtitle {
            color: var(--secondary);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            display: block;
        }

        .section-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .section-description {
            color: var(--text-light);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Hero Section Styles */
        .hero-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        /* Hero Text Content */
        .hero-text-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--secondary);
            color: var(--white);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 2rem;
        }

        .hero-title {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .hero-description {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
        }

        .hero-cta-group {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        /* Updated Stats Styles */
        .hero-stats {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-top: 3rem;
        }

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

        .stat-divider {
            width: 1px;
            height: 40px;
            background: var(--border);
        }

        .stat-number {
            display: flex;
            align-items: baseline;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-number .unit {
            font-size: 1.5rem;
            margin-left: 0.25rem;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        /* Floating Cards */
        .floating-card {
            position: absolute;
            background: var(--white);
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            animation: float 3s ease-in-out infinite;
        }

        .floating-card.card-stats {
            top: 20%;
            left: -60px;
        }

        .floating-card.card-users {
            bottom: 20%;
            right: -60px;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 2rem;
            }
            
            .stat-divider {
                width: 100%;
                height: 1px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-cta-group {
                flex-direction: column;
            }
        }

        /* Floating Cards 스타일 수정 */
        .hero-image {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            padding: 20px;
        }

        .dashboard-preview {
            position: relative;
            z-index: 1;
            width: 100%;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .floating-card {
            position: absolute;
            background: var(--white);
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            z-index: 2;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        /* 첫 번째 카드 - 왼쪽 상단에 위치 */
        .floating-card.card-stats {
            top: 15%;
            left: -30px;
            min-width: 220px;
        }

        /* 두 번째 카드 - 오른쪽 하단에 위치 */
        .floating-card.card-users {
            bottom: 15%;
            right: -30px;
            min-width: 200px;
        }

        .card-content {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .stat-icon, .user-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(211, 19, 52, 0.1); /* 키컬러의 반투명 배경 */
            border-radius: 10px;
            font-size: 1.2rem;
        }

        .stat-info, .user-info {
            display: flex;
            flex-direction: column;
        }

        .stat-label, .user-label {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 0.2rem;
        }

        .stat-value, .user-value {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary);
        }

        /* 애니메이션 수정 */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px); /* 움직임을 좀 더 미세하게 조정 */
            }
        }

        .floating-card {
            animation: float 3s ease-in-out infinite;
        }

        /* 두 번째 카드는 약간의 딜레이를 주어 엇갈린 움직임 연출 */
        .floating-card.card-users {
            animation-delay: 1.5s;
        }

        /* 반응형 조정 */
        @media (max-width: 1200px) {
            .floating-card.card-stats {
                left: 0;
            }
            
            .floating-card.card-users {
                right: 0;
            }
        }

        @media (max-width: 768px) {
            .floating-card {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                bottom: auto;
                margin: 1rem 0;
            }
            
            .hero-image-container {
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Partners Section */
        .partners {
            padding: 4rem 0;
            background: var(--gray-50);
        }

        .partners-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .partners-heading {
            text-align: center;
            margin-bottom: 3rem;
        }

        .partners-grid {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .partner-logo {
            opacity: 0.6;
            transition: opacity 0.3s ease;
            filter: grayscale(1);
        }

        .partner-logo:hover {
            opacity: 1;
            filter: grayscale(0);
        }

        /* Features Section */
                
        .features {
            padding: 8rem 0;
            background: var(--white);
        }

        .features-container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-subtitle {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--secondary);
            color: var(--white);
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .feature-card {
            padding: 2.5rem;
            background: var(--gray-50);
            border-radius: 24px;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(74, 144, 226, 0.1);
            background: var(--white);
            border-color: var(--gray-100);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: var(--white);
            border: 2px solid var(--primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .feature-description {
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        #features > .feature-list li {
            color: var(--text-dark);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            font-size: 1rem;
        }
        
        #features > .feature-list li::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            margin-right: 1rem;
        }

        .cta-container {
            text-align: center;
            margin-top: 4rem;
        }

        .cta-button {
            padding: 1rem 2.5rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: var(--secondary);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(74, 144, 226, 0.2);
        }

        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .features {
                padding: 4rem 0;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .feature-card {
                padding: 2rem;
            }
        }
        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .nav-toggle {
                display: block;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-cta-group {
                flex-direction: column;
            }
        }
        
        /* Specialist Section */
        .specialist {
            padding: 8rem 0;
            background: var(--gray-50);
        }
        .specialist-container{
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
        }   
        .specialist-tabs {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 4rem 0;
        }

        .specialist-tab {
            background: var(--white);
            border: none;
            padding: 2.5rem 2rem;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 240px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .specialist-tab.active {
            background: var(--secondary);
            color: var(--white);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
        }

        .specialist-tab .tab-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .specialist-tab h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
            transition: color 0.3s ease;
        }

        .specialist-tab p {
            color: var(--text-light);
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .specialist-tab.active h3,
        .specialist-tab.active p {
            color: var(--white);
        }

        /* Specialist Panel Styles */
        .specialist-panel {
            display: none;
            background: var(--white);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .specialist-panel.active {
            display: block;
            animation: fadeIn 0.5s ease forwards;
        }

        .panel-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .feature-card > .feature-group {
            margin-bottom: 2.5rem;
        }

        .feature-card >.feature-group:last-child {
            margin-bottom: 0;
        }

        .feature-card >.feature-group h4 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .feature-card >.feature-list {
            list-style: none;
        }

        .feature-card >.feature-list li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-light);
        }

        .feature-card >.feature-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            background: var(--secondary);
            border-radius: 50%;
        }
        /* 기존 .specialist-panel과 .panel-content 스타일은 그대로 두고 feature-group 관련 스타일만 수정 */

        .feature-group {
            margin-bottom: 2.5rem;
            padding: 1.5rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-group:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(211,19,52,0.05);
        }

        .feature-group h4 {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
            position: relative;
            padding-left: 1.5rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .feature-group h4::before {
            content: '';
            position: absolute;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--secondary);
            border-radius: 2px;
        }

        .panel-info > .feature-group  > .feature-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            padding: 0.5rem;
        }

        .panel-info > .feature-group  > .feature-list li {
            padding: 0.75rem 1rem;
            color: var(--text-light);
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.95rem;
            background: rgba(248,249,250,0.8);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .panel-info > .feature-group  > .feature-list li::before {
            content: '';
            flex-shrink: 0;
            width: 6px;
            height: 6px;
            background: var(--secondary);
            border-radius: 50%;
            opacity: 0.8;
        }

        .panel-info > .feature-group  > .feature-list li:hover {
            background: rgba(211,19,52,0.05);
            transform: translateX(5px);
            color: var(--secondary);
        }

        @media (max-width: 768px) {
            .panel-info > .feature-group > .feature-list {
                grid-template-columns: 1fr;
            }
            
            .feature-group {
                padding: 1.25rem;
            }
        }

        .panel-preview img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* Benefits Section */
        .benefits {
            padding: 8rem 0;
            background: var(--white);
        }
        .benefits-container{
/*            max-width: 1440px;*/
            margin: 0 auto;
            padding: 0 2rem;
        }   
        .stats-showcase {
            width: 100%;

            margin: 4rem 0;
            padding: 4rem;
            background: var(--gray-50);
            border-radius: 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .stat-card {
            text-align: center;
            padding: 2.5rem 2rem;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .stat-value {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 1rem;
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        .stat-value .unit {
            font-size: 2rem;
            margin-left: 0.25rem;
        }

        .stat-label {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .stat-desc {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .benefit-card {
            padding: 2.5rem 2rem;
            background: var(--gray-50);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            background: var(--white);
        }

        .benefit-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            
          
			    
        }

        .benefit-icon {
            font-size: 2rem;
        }

        .benefit-header h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary);
        }

        .benefit-list {
            list-style: none;
            padding-left: 28px;
        }

        .benefit-list li {
            margin-bottom: 0.75rem;
            color: var(--text-light);
            padding-left: 1.25rem;
            position: relative;
        }

        .benefit-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            background: var(--secondary);
            border-radius: 50%;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .specialist-tabs {
                flex-direction: column;
                max-width: 400px;
                margin: 4rem auto;
            }

            .panel-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stats-grid,
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .specialist-panel {
                padding: 1.5rem;
            }

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

            .stats-showcase {
                max-width: 1440px;
                padding: 2rem;
            }
        }

        /* Pricing Section */
        .pricing {
            padding: 8rem 0;
            background: var(--gray-50);
        }
        .pricing-container{
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
        }   
        .pricing-plans {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .plan-card {
            background: var(--white);
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .plan-card.featured {
            background: var(--secondary);
            color: var(--white);
            transform: scale(1.05);
            z-index: 1;
        }

        .plan-badge {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: var(--primary);
            color: var(--white);
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            border-radius: 20px;
            font-weight: 600;
        }

        .plan-header {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--gray-200);
        }

        .plan-card.featured .plan-header {
            border-bottom-color: rgba(255,255,255,0.2);
        }

        .plan-header h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .plan-card.featured .plan-header h3 {
            color: var(--white);
        }

        .plan-description {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .plan-card.featured .plan-description {
            color: rgba(255,255,255,0.8);
        }

        .plan-price {
            margin-top: 1.5rem;
            display: flex;
            align-items: flex-start;
            gap: 0.25rem;
        }

        .price {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1;
            color: var(--primary);
        }

        .plan-card.featured .price {
            color: var(--white);
        }

        .unit {
            font-size: 1rem;
            color: var(--text-light);
            margin-top: 0.5rem;
        }

        .plan-card.featured .unit {
            color: rgba(255,255,255,0.8);
        }

        .plan-features {
            margin-bottom: 2rem;
        }

        .plan-features ul {
            list-style: none;
        }

        .plan-features li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-light);
        }

        .plan-card.featured .plan-features li {
            color: rgba(255,255,255,0.8);
        }

        .plan-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
        }

        .plan-card.featured .plan-features li::before {
            color: var(--white);
        }

        .plan-cta {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            background: var(--primary);
            color: var(--white);
            border: none;
        }

        .plan-card.featured .plan-cta {
            background: var(--white);
            color: var(--secondary);
        }

        .plan-cta:hover {
            transform: translateY(-2px);
        }

        
        /* Contact Section */
        .contact {
            padding: 8rem 0;
            background: var(--gray-50);
        }
        .contact-container{
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
        }   

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .contact-features {
            margin-top: 3rem;
        }

        .contact-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: var(--white);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .contact-feature:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        /* SVG 아이콘 관련 스타일만 수정된 부분 */
        .feature-icon {
            width: 48px;
            height: 48px;
            background: var(--white);
            border: 1px solid var(--secondary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .feature-icon svg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 24px;
        }

        .feature-icon svg path,
        .feature-icon svg circle {
            stroke: var(--secondary);
            stroke-width: 2px;
        }

        /* feature-icon의 hover 상태에서도 동일한 색상 유지 */
        .feature-card:hover .feature-icon {
            border-color: var(--secondary);
        }

        .feature-card:hover .feature-icon svg path,
        .feature-card:hover .feature-icon svg circle {
            stroke: var(--secondary);
        }



        .feature-text h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .feature-text p {
            color: var(--text-light);
            margin: 0;
        }

        .contact-form {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--primary);
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            color: var(--text);
            background: var(--white);
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .submit-button {
            width: 100%;
            padding: 1rem;
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .submit-button:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }

        .submit-button .arrow {
            transition: transform 0.3s ease;
        }

        .submit-button:hover .arrow {
            transform: translateX(5px);
        }

        /* Footer */
        .footer {

            background: var(--primary);
            color: var(--white);
            padding: 6rem 0 2rem;
        }

        .footer-content {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 3fr 2fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-logo {
            margin-bottom: 1rem;
        }

        .footer-logo .logo {
            color: var(--white);
            font-size: 1.75rem;
        }

        .footer-logo p {
            color: var(--gray-400);
            margin-top: 1rem;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .footer-column h4 {
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

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

        .footer-column ul li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: var(--gray-400);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-column a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

        .footer-contact h4 {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        .contact-info {
            color: var(--gray-400);
            margin-bottom: 0.75rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .social-links {
            margin-top: 1.5rem;
            display: flex;
            gap: 1rem;
        }

        .social-link {
            color: var(--gray-400);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            color: var(--white);
            transform: translateY(-3px);
        }

        .social-link svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            color: var(--gray-400);
        }

        /* Animation Classes */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .contact-form {
                padding: 2rem;
            }
            
            .footer-links {
                grid-template-columns: 1fr;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-bottom {
                padding: 1.5rem 0;
            }
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .mb-0 {
            margin-bottom: 0;
        }

        .text-gradient {
            background: linear-gradient(45deg, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }


   
/* 모바일 메뉴 컨테이너 중앙 정렬 */
.mobile-menu-container {
  width: 100%;
  max-width: 100%;
  padding: 1rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 모바일 메뉴 헤더 정렬 */
.mobile-menu-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

/* 모바일 메뉴 콘텐츠 중앙 정렬 */
.mobile-menu-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

/* 모바일 메뉴 링크 정렬 */
.mobile-menu-link {
  width: 100%;
  text-align: center;
  padding: 0.75rem 0;
}

/* 모바일 히어로 섹션 조정 */
@media (max-width: 768px) {
  .hero-container {
    padding: 2rem 1rem;
  }

  .hero-content {
    width: 100%;
    text-align: center;
  }

  .hero-text-content {
    width: 100%;
    padding: 0 1rem;
  }

  .hero-cta-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  /* 버튼 중앙 정렬 및 너비 조정 */
  .hero-cta-group > * {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }
}

/* 모바일 섹션 패딩 조정 */
@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }

  .section-header {
    text-align: center;
    padding: 0 1rem;
  }

  /* 카드 그리드 조정 */
  .features-grid,
  .benefits-grid,
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  /* 카드 내부 정렬 */
  .feature-card,
  .benefit-card,
  .step-card {
    text-align: center;
    padding: 1.5rem;
  }
}

/* 하단 CTA 버튼 정렬 */
.cta-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.cta-container > * {
  width: auto;
  min-width: 200px;
  max-width: 300px;
}

/* 푸터 모바일 정렬 */
@media (max-width: 768px) {
  .footer-content {
    padding: 2rem 1rem;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .social-links {
    justify-content: center;
    margin-top: 1rem;
  }
}

    /* 히어로 섹션 기본 스타일 */
        .hero {
            position: relative;
            width: 100%;
            /* min-height: 100vh; */
            background: linear-gradient(to bottom right, #ffffff, #f8fafc);
            overflow: hidden;
            padding: 80px 0;
        }

        /* 배경 효과 */
        .hero:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(211,19,52,0.03) 0%, transparent 70%);
            transform: rotate(-12deg);
        }

        .hero:after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 60%;
            height: 100%;
            background: radial-gradient(circle, rgba(211,19,52,0.02) 0%, transparent 60%);
            transform: rotate(15deg);
        }
        .preview-container {
            position: relative;
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
            padding: 40px 0;
        }

        .smartphone {
            position: relative;
            width: 280px;
            height: 580px;
            margin: 0 auto;
            border: 8px solid #1a1a1a;
            border-radius: 48px;
            box-shadow: 
                0 20px 40px rgba(0,0,0,0.2),
                0 0 0 8px rgba(26,26,26,0.1);
            overflow: hidden;
            background: #fff;
            transform: perspective(1000px) rotateX(2deg);
        }

        .smartphone:before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 20px;
            background: #1a1a1a;
            border-bottom-left-radius: 16px;
            border-bottom-right-radius: 16px;
            z-index: 3;
        }

        .screen {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 40px;
            box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
        }

        .slide-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.8s ease;
        }

        .slide.active {
            opacity: 1;
            pointer-events: auto;
        }

        .slide-content {
            position: absolute;
            width: 100%;
            transform: translateY(0);
        }

        .index-image {
            width: 100%;
            height: auto;
            aspect-ratio: 693/4096;
        }

        .history-image {
            width: 100%;
            height: auto;
            aspect-ratio: 684/6935;
        }

        .insert-image {
            width: 100%;
            height: auto;
            aspect-ratio: 750/3812;
        }

        .slide.active .slide-content {
            animation: scrollAnimation 8s linear forwards;
        }

        @keyframes scrollAnimation {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(calc(-100% + 580px));
            }
        }

        .progress-dots {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 8px;
            z-index: 4;
        }

        .dot {
            width: 4px;
            height: 20px;
            border-radius: 2px;
            background: rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #1a1a1a;
            height: 40px;
        }

        /* 디바이스 버튼 스타일링 */
        .volume-buttons {
            position: absolute;
            left: -8px;
            top: 100px;
            width: 3px;
            height: 60px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .volume-button {
            width: 100%;
            height: 24px;
            background: #1a1a1a;
            border-top-left-radius: 2px;
            border-bottom-left-radius: 2px;
        }

        .power-button {
            position: absolute;
            right: -8px;
            top: 120px;
            width: 3px;
            height: 40px;
            background: #1a1a1a;
            border-top-right-radius: 2px;
            border-bottom-right-radius: 2px;
        }

        /* 반사 효과 */
        .screen:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(
                to bottom,
                rgba(255,255,255,0.1),
                transparent
            );
            z-index: 2;
            pointer-events: none;
        }
        S
되따 내가 원하는 느낌은 나온다 이제 좀 더 예쁘게 만들어봐 잘


기하학적 요소들을 더 세련되게 다듬고, 애니메이션과 디테일을 보강해보겠습니다:

html

Copy
<section class="hero">
    <div class="hero-container">
        <div class="hero-content">
            <div class="hero-text">
                <span class="hero-badge">신체나이 분석 솔루션</span>
                <h1 class="hero-title">신체나이 분석과<br>운동 변화를 추적하는<br>헬스케어 솔루션</h1>
                <p class="hero-description">피트니스, 요가, 필라테스 전문가를 위한<br>데이터 기반의 회원 관리 플랫폼</p>
                <div class="hero-cta">
                    <button class="btn-primary">도입 문의하기</button>
                </div>
            </div>
            
            <div class="hero-visual">
                <!-- 기하학적 도형들 -->
                <div class="geometric-shapes">
                    <!-- 큰 원형 배경 -->
                    <div class="shape main-circle"></div>
                    
                    <!-- 작은 장식 요소들 -->
                    <div class="shape-group left">
                        <div class="shape dot dot-1"></div>
                        <div class="shape dot dot-2"></div>
                        <div class="shape dot dot-3"></div>
                    </div>
                    
                    <div class="shape-group right">
                        <div class="shape line line-1"></div>
                        <div class="shape line line-2"></div>
                        <div class="shape line line-3"></div>
                    </div>

                    <!-- 배경 패턴 -->
                    <div class="shape grid-pattern"></div>
                    
                    <!-- 장식용 도형들 -->
                    <div class="shape square"></div>
                    <div class="shape triangle"></div>
                    <div class="shape circle-small"></div>
                </div>
                
                <!-- 메인 폰 이미지 -->
                <div class="phone-wrapper">
                    <div class="phone-shadow"></div>
                    <div class="smartphone">
                        <!-- 기존 폰 컨텐츠 -->
                    </div>
                </div>
            </div>
        </div>
    </div>
</section>

<style>
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    overflow: hidden;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* 비주얼 영역 */
.hero-visual {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 기하학적 도형 스타일링 */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* 메인 원형 배경 */
.main-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, 
        rgba(211, 19, 52, 0.05) 0%,
        rgba(211, 19, 52, 0.02) 100%
    );
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

/* 도트 그룹 */
.shape-group.left {
    position: absolute;
    left: 10%;
    top: 30%;
}



.dot-1 { animation: float 4s ease-in-out infinite; }
.dot-2 { animation: float 4s ease-in-out infinite 0.5s; }
.dot-3 { animation: float 4s ease-in-out infinite 1s; }

/* 라인 그룹 */
.shape-group.right {
    position: absolute;
    right: 10%;
    top: 40%;
}

.line {
    width: 40px;
    height: 2px;
    background: rgba(211, 19, 52, 0.1);
    margin: 8px 0;
    transform-origin: right;
}

.line-1 { transform: rotate(45deg); }
.line-2 { transform: rotate(0deg); }
.line-3 { transform: rotate(-45deg); }

/* 그리드 패턴 */
.grid-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 20%;
    right: 15%;
    background-image: 
        linear-gradient(rgba(211, 19, 52, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(211, 19, 52, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    transform: rotate(-15deg);
    animation: fade 6s ease-in-out infinite;
}

/* 장식용 도형들 */
.square {
    position: absolute;
    width: 60px;
    height: 60px;
    bottom: 25%;
    left: 15%;
    border: 2px solid rgba(211, 19, 52, 0.1);
    transform: rotate(45deg);
    animation: rotate 20s linear infinite;
}

.triangle {
    position: absolute;
    top: 20%;
    left: 20%;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid rgba(211, 19, 52, 0.05);
    animation: float 6s ease-in-out infinite;
}

.circle-small {
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 20%;
    border: 2px solid rgba(211, 19, 52, 0.08);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

/* 폰 스타일링 */
.phone-wrapper {
    position: relative;
    z-index: 2;
}

.phone-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0) 70%
    );
    border-radius: 50%;
}

.smartphone {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.smartphone:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* 애니메이션 */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.2; }
}

/* 반응형 */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .geometric-shapes {
        opacity: 0.7;
    }
    
    .hero-visual {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .shape-group,
    .grid-pattern {
        display: none;
    }
    
    .main-circle {
        width: 300px;
        height: 300px;
    }
}

/* 작은 도형들 그룹 */
.shape-group.left {
   position: absolute;
   left: 0;
   top: 15%;
   width: 300px;  /* 영역 확대 */
   height: 600px; /* 영역 확대 */
}

/* 작은 사각형 - 왼쪽 상단 */
.mini-square {
   position: absolute;
   width: 55px;  /* 크기 증가 */
   height: 55px;
   left: 25%;
   top: 15%;
   background: rgba(211, 19, 52, 0.08); /* 투명도 증가 */
   transform: rotate(45deg);
   animation: floatSquare 6s ease-in-out infinite;
}

/* 작은 삼각형 - 오른쪽 중앙 */
.mini-triangle {
   position: absolute;
   right: -20%;
   top: 45%;
   width: 0;
   height: 0;
   border-left: 35px solid transparent;  /* 크기 증가 */
   border-right: 35px solid transparent;
   border-bottom: 60px solid rgba(211, 19, 52, 0.06);
   animation: floatTriangle 7s ease-in-out infinite;
}

/* 작은 원 - 왼쪽 하단 */
.mini-circle {
   position: absolute;
   width: 70px;  /* 크기 증가 */
   height: 70px;
   left: 10%;
   bottom: 15%;
   background: rgba(211, 19, 52, 0.07);
   border-radius: 50%;
   animation: floatCircle 5s ease-in-out infinite;
}

/* 작은 직사각형 - 중앙 상단 */
.mini-rect {
   position: absolute;
   width: 80px;  /* 크기 증가 */
   height: 40px;
   left: 40%;
   top: 30%;
   background: rgba(211, 19, 52, 0.06);
   transform: rotate(-15deg);
   animation: floatRect 8s ease-in-out infinite;
}

/* 호버 효과 개선 */
.mini-square:hover {
   transform: rotate(225deg) scale(1.2);
   background: rgba(211, 19, 52, 0.15);
   transition: all 0.3s ease;
}

.mini-triangle:hover {
   transform: translateY(-5px) rotate(180deg);
   border-bottom-color: rgba(211, 19, 52, 0.15);
   transition: all 0.3s ease;
}

.mini-circle:hover {
   transform: scale(1.2);
   background: rgba(211, 19, 52, 0.15);
   transition: all 0.3s ease;
}

.mini-rect:hover {
   transform: rotate(-15deg) scaleX(1.3);
   background: rgba(211, 19, 52, 0.15);
   transition: all 0.3s ease;
}

/* 애니메이션 수정 - 더 여유로운 움직임 */
@keyframes floatSquare {
   0%, 100% { 
       transform: rotate(45deg) translate(0, 0); 
   }
   50% { 
       transform: rotate(45deg) translate(-25px, -30px); 
   }
}

@keyframes floatTriangle {
   0%, 100% { 
       transform: translate(0, 0); 
   }
   50% { 
       transform: translate(25px, -35px); 
   }
}

@keyframes floatCircle {
   0%, 100% { 
       transform: translate(0, 0); 
   }
   50% { 
       transform: translate(-30px, -25px); 
   }
}

@keyframes floatRect {
   0%, 100% { 
       transform: rotate(-15deg) translate(0, 0); 
   }
   50% { 
       transform: rotate(-15deg) translate(30px, -30px); 
   }
}

/* 반응형 처리 */
@media (max-width: 1200px) {
   .shape-group.left {
       scale: 0.8;
       left: -5%;
   }
}

@media (max-width: 768px) {
   .shape-group.left {
       scale: 0.6;
       left: -10%;
   }
}