/* Base Styles */
 :root {
            --primary: #D31334;
            --primary-light: rgba(211, 19, 52, 0.1);
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --bg-light: #f8fafc;
            --success: #16a34a;
            --success-light: #dcfce7;
            --danger: #dc2626;
            --danger-light: #fee2e2;
            --border-light: #f1f5f9;
        }
 body {
     font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
     background: var(--white);
     color: var(--black);
     line-height: 1;
     overflow-x: hidden;
 }

 /* Typography */
 .text-display {
     font-size: 120px;
     line-height: 1.1;
     font-weight: 600;
     letter-spacing: -0.03em;
 }

        .text-h1 {
            font-size: 80px;
            line-height: 1.1;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .text-h2 {
            font-size: 48px;
            line-height: 1.2;
            font-weight: 500;
        }

        .text-body {
            font-size: 20px;
            line-height: 1.6;
            font-weight: 400;
            color: var(--gray-600);
        }

        /* Navigation Styles */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s ease;
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-menu {
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        .nav-link {
            color: var(--text);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 100%;
            height: 2px;
            background: var(--secondary);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .nav-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-cta {
            padding: 0.75rem 1.5rem;
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

        /* Mobile Navigation */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--primary);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .nav-toggle {
                display: block;
            }
            
            .text-display { font-size: 48px; }
            .text-h1 { font-size: 40px; }
            .text-h2 { font-size: 28px; }
        }
    /* Container & Section Base Styles */
    .section {
        min-height: 100vh;
        padding: 120px 0;
        display: flex;
        align-items: center;
    }

    .container {
        width: 90%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 32px;
    }

    /* Header Section */
    .header {
        position: relative;
        background: var(--white);
        margin-top: 80px;
    }

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

    .header-content {
        max-width: 1000px;
    }

    /* Image Styles */
    .image-container {
        position: relative;
        padding-top: 120%;
    }

    .image-container img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Analysis Section */
    .analysis {
        padding: 8rem 0;
        background: var(--gray-50);
    }

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

    .analysis-content {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
        margin-top: 4rem;
    }

    /* Section Header Styles */
    .section-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

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

    .section-title {
        font-size: 2.5rem;
        color: #1a1a1a;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .section-description {
        color: #666666;
        font-size: 1.1rem;
        line-height: 1.6;
    }

    /* Animation Classes */
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    /* Responsive Styles */
    @media (max-width: 1200px) {
        .header-grid {
            gap: 40px;
        }
        
        .analysis-content {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .header-grid {
            grid-template-columns: 1fr;
        }

        .section {
            padding: 80px 0;
        }

        .container {
            padding: 0 24px;
        }
    }
    /* Dashboard Styles */
    .dashboard-preview {
        background: var(--white);
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }

    .dashboard-tabs {
        display: flex;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .tab {
        padding: 0.75rem 1.5rem;
        background: none;
        border: none;
        font-size: 0.95rem;
        color: var(--text-light);
        cursor: pointer;
        transition: all 0.3s ease;
        border-radius: 8px;
    }

    .tab.active {
        background: var(--secondary);
        color: var(--white);
        font-weight: 500;
    }

    .dashboard-screen {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
    }

    .screen-content {
        display: none;
    }

    .screen-content.active {
        display: block;
    }

    /* Analysis Features */
    .analysis-features {
        padding-top: 2rem;
    }

    .analysis-feature {
        position: relative;
        padding-left: 4rem;
        margin-bottom: 3rem;
    }

    .feature-number {
        position: absolute;
        left: 0;
        top: -11px;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--secondary);
        opacity: 0.2;
        line-height: 1;
    }

    .analysis-feature h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #1a1a1a;
    }

    .analysis-feature ul {
        list-style: none;
    }

    .analysis-feature ul li {
        color: #666666;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .analysis-feature ul li::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--secondary);
        border-radius: 50%;
    }

    /* SVG Chart Styles */
    .chart-container svg {
        width: 100%;
        height: auto;
    }

    @media (max-width: 768px) {
        .dashboard-tabs {
            flex-wrap: wrap;
        }

        .tab {
            font-size: 0.85rem;
            padding: 0.5rem 1rem;
        }

        .analysis-feature {
            padding-left: 3rem;
        }
    }
    /* Platform Section Styles */
    .platform {
        padding: 8rem 0;
        background: var(--white);
    }

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



    /* Solution Section Styles */
    .solution-header {
        background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
        position: relative;
        overflow: hidden;
        color: var(--white);
    }

    .solution-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/api/placeholder/1920/1080') center/cover;
        opacity: 0.05;
    }

    .solution-header-content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 800px;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin: -100px auto 60px;
        max-width: 1200px;
        padding: 0 20px;
        position: relative;
    }

    .step-card {
        background: var(--white);
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

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

    .step-number {
        font-size: 4em;
        font-weight: 700;
        color: #2c2c2c;
        line-height: 1;
        margin-bottom: 20px;
        opacity: 0.15;
    }

    .feature-icon {
        background: rgba(0, 0, 0, 0.05);
        width: 80px;
        height: 80px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }

    .start-btn {
        display: block;
        width: 280px;
        margin: 0 auto;
        padding: 20px 40px;
        background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
        color: white;
        text-align: center;
        text-decoration: none;
        border-radius: 50px;
        font-size: 1.2em;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .start-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    }

    @media (max-width: 1024px) {
        .steps-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .platform-tabs {
            flex-wrap: wrap;
        }
    }

    @media (max-width: 768px) {
        .steps-grid {
            grid-template-columns: 1fr;
        }
        
        .platform-showcase {
            padding: 1.5rem;
        }
    }
/* Header Styles */
.measure-header {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    overflow: visible; /* hidden에서 visible로 변경 */
    margin-bottom: -100px; /* 카드가 헤더 위로 올라오도록 음수 마진 추가 */
}


.measure-header-content {
   text-align: center;
}

.measure-header-content h1 {
   font-size: 48px;
   color: #fff;
   margin-bottom: 20px;
   font-weight: 700;
}

.measure-header-content p {
   font-size: 18px;
   color: rgba(255, 255, 255, 0.8);
   line-height: 1.6;
}

/* Container Styles */
/* Container Styles */
.measure-container {
    position: relative; /* 상대 위치 설정 */
    z-index: 2; /* 헤더보다 위에 표시되도록 z-index 설정 */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Styles */
.measure-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   margin-bottom: 50px;
}

/* Card Styles */
.measure-card {
   background: #fff;
   border-radius: 16px;
   padding: 40px;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.measure-icon {
   margin-bottom: 30px;
}

.measure-number {
   font-size: 24px;
   font-weight: 700;
   color: #D31334;
   margin-bottom: 20px;
}

.measure-card h2 {
   font-size: 28px;
   color: #333;
   margin-bottom: 20px;
   font-weight: 700;
}

.measure-card p {
   font-size: 16px;
   color: #666;
   line-height: 1.6;
   margin-bottom: 30px;
}

.measure-card ul {
   list-style: none;
}

.measure-card ul li {
   color: #666;
   font-size: 16px;
   margin-bottom: 12px;
   display: flex;
   align-items: center;
}

.measure-card ul li::before {
   content: "";
   width: 6px;
   height: 6px;
   background: #D31334;
   border-radius: 50%;
   margin-right: 12px;
   display: inline-block;
}

/* Button Styles */
.measure-button {
	
   display: block;
   width: fit-content;
   margin: 0 auto;
   margin-top:60px;
   padding: 20px 40px;
   background: #D31334;
   color: #fff;
   border: none;
   border-radius: 12px;
   font-size: 18px;
   font-weight: 600;
   cursor: pointer;
   transition: background-color 0.3s ease;
}

.measure-button:hover {
   background: #B31029;
}

/* Responsive Styles */
@media (max-width: 1024px) {
   .measure-grid {
       grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 768px) {
   .measure-header-content h1 {
       font-size: 36px;
   }
   
   .measure-grid {
       grid-template-columns: 1fr;
   }
   
   .measure-card {
       padding: 30px;
   }
}
    /* Global Animation Keyframes */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes slideIn {
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0);
        }
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
        100% {
            transform: scale(1);
        }
    }

    /* Utility Classes */
    .animate-fade-in {
        animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .animate-slide-in {
        animation: slideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .animate-pulse {
        animation: pulse 2s ease-in-out infinite;
    }

    .hidden {
        opacity: 0;
        visibility: hidden;
    }

    /* Scrollbar Styling */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: var(--gray-50);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--gray-300);
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--gray-400);
    }

    /* Loading Screen */
    .loading-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .loading-spinner {
        width: 50px;
        height: 50px;
        border: 3px solid var(--gray-200);
        border-top: 3px solid var(--secondary);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Smooth Scroll Behavior */
    html {
        scroll-behavior: smooth;
    }

    /* Focus Styles */
    :focus {
        outline: 2px solid var(--secondary);
        outline-offset: 2px;
    }

    /* Print Styles */
    @media print {
        .nav,
        .cta-section,
        .platform-tabs,
        .start-btn {
            display: none !important;
        }

        body {
            color: black !important;
            background: white !important;
        }

        @page {
            margin: 2cm;
        }
    }
    /* Solution Section Styles */
    .solution-header {
        background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
        position: relative;
        overflow: hidden;
        color: var(--white);
    }

    .solution-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/api/placeholder/1920/1080') center/cover;
        opacity: 0.05;
    }

    .solution-header .header-content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 800px;
    }

    .solution-header h1 {
        font-size: 3.5em;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .solution-header p {
        font-size: 1.2em;
        font-weight: 300;
        opacity: 0.9;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin: -100px auto 60px;
        max-width: 1200px;
        padding: 0 20px;
        position: relative;
    }

    .step-card {
        background: var(--white);
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

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

    .step-number {
        font-size: 4em;
        font-weight: 700;
        color: #2c2c2c;
        line-height: 1;
        margin-bottom: 20px;
        opacity: 0.15;
    }

    .feature-icon {
        background: rgba(0, 0, 0, 0.05);
        width: 80px;
        height: 80px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
    }

    .step-card h2 {
        font-size: 1.8em;
        color: var(--primary);
        margin-bottom: 20px;
        font-weight: 600;
    }

    .step-card p {
        color: var(--text-light);
        margin-bottom: 25px;
        font-size: 1.1em;
        line-height: 1.6;
    }

    .step-card ul {
        list-style: none;
        padding: 0;
    }

    .step-card ul li {
        color: var(--text);
        margin: 12px 0;
        padding-left: 28px;
        position: relative;
    }

    .step-card ul li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--secondary);
    }

    .start-btn {
        display: block;
        width: 280px;
        margin: 0 auto;
        padding: 20px 40px;
        background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
        color: white;
        text-align: center;
        text-decoration: none;
        border-radius: 50px;
        font-size: 1.2em;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .start-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    }

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

    @media (max-width: 768px) {
        .solution-header h1 {
            font-size: 2.5em;
        }
        
        .steps-grid {
            grid-template-columns: 1fr;
            margin-top: -50px;
        }
    }
    /* Features Section Styles */
    .features {
        margin-top: 80px;
        padding: 120px 20px;
        background: var(--gray-50);
    }

    .features-grid {
        max-width: 1200px;
        margin: 40px auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .feature-card {
        background: var(--white);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.4s ease;
    }

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

    /* Timeline Section Styles */
   
.time-section {
    padding: 160px 0;
    background: #fff;
    position: relative;
}

.time-title-wrap {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.time-title-wrap h2 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.time-title-wrap p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.time-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.time-line {
    position: relative;
    padding: 40px 0;
}

.time-line::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #e5e7eb;
    transform: translateX(-50%);
}

.time-item {
    margin-bottom: 80px;
    position: relative;
}

.time-dot {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 4px solid #D31334;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.time-content {
    width: calc(50% - 50px);
    background: #f8fafc;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.time-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 16px;
    font-weight: 700;
}

.time-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* 홀수 아이템 (왼쪽) */
.time-item:nth-child(odd) .time-content {
    margin-right: auto;
}

/* 짝수 아이템 (오른쪽) */
.time-item:nth-child(even) .time-content {
    margin-left: auto;
}

@media (max-width: 1024px) {
    .time-line::before {
        left: 40px;
    }
    
    .time-dot {
        left: 40px;
    }
    
    .time-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }
}

@media (max-width: 768px) {
    .time-section {
        padding: 80px 0;
    }
    
    .time-title-wrap h2 {
        font-size: 36px;
    }
    
    .time-content {
        padding: 30px;
    }
}


    /* CTA Section Styles */
    .cta {
        text-align: center;
        background: var(--white);
    }

    .btn {
        display: inline-block;
        padding: 20px 48px;
        background: var(--secondary);
        color: var(--white);
        text-decoration: none;
        border-radius: 12px;
        font-size: 1.125rem;
        font-weight: 600;
        margin-top: 40px;
        transition: all 0.3s ease;
    }

    .btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        background: var(--primary);
    }

    @media (max-width: 1024px) {
        .timeline-item {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .timeline::before {
            left: 40px;
        }

        .timeline-dot {
            left: 40px;
        }
    }

    @media (max-width: 768px) {
        .features {
            padding: 80px 20px;
        }
        
        .timeline-section {
            padding: 80px 0;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }
    }
.feature-section {
    background: #fff;
    padding: 80px 20px;
}

.feature-title-wrap {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.feature-title-wrap h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-title-wrap p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature-icon {
    margin-bottom: 30px;
}

.feature-item h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 16px;
    font-weight: 700;
}

.feature-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .feature-title-wrap h1 {
        font-size: 36px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
.feature-title-icon {
    margin-bottom: 30px;
    display: flex;           /* Flexbox 사용 */
    justify-content: center; /* 가로 중앙 정렬 */
    align-items: center;     /* 세로 중앙 정렬 */
}

/* 선택적으로 SVG 자체도 중앙 정렬이 필요한 경우 */
.feature-title-icon svg {
    display: block;         /* 인라인 요소 제거 */
    margin: 0 auto;        /* 가로 중앙 정렬 */
}

    /* 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;
        }

        .platform-content {
            height: calc(100% - 60px);
        }

        .platform-screen {
            height: 100%;
            overflow-y: auto;
            background: #fafafa;
            padding: 32px;
        }

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


        .charts-row {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
            margin-bottom: 24px;
            height: 300px;
        }

        .chart-container {
            background: white;
            padding: 24px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .chart-title {
            color: #1a1a1a;
            font-size: 16px;
            font-weight: 500;
        }

        .chart-period {
            color: #666;
            font-size: 14px;
        }

        /* canvas {
            width: 100% !important;
            height: calc(100% - 40px) !important;
        } */
        /* 추가할 스타일 */

        .platform-content {
            height: calc(100% - 60px);  /* 탭 높이(60px)를 제외한 나머지 영역 */
        }

        .platform-screen {
            height: 100%;
            overflow-y: auto;  /* 내용이 많을 경우 스크롤 가능하도록 */
            background: #fafafa;
            padding: 32px;
            border-radius: 20px;
        }

        /* 차트 컨테이너 크기 조정 */
       

        /* 회원관리 레이아웃 */
        .member-dashboard {
            height: 100%;
            display: grid;
            grid-template-rows: auto 1fr;
            gap: 16px;
        }

        .status-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            height: 100px;
        }

        .main-content {
            display: grid;
            grid-template-columns: 2.5fr 1.5fr;
            gap: 16px;
            height: calc(100% - 116px);
        }

        .member-list {
            background: white;
            border-radius: 12px;
            padding: 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .list-header {
            display: grid;
            grid-template-columns: 0.8fr 1fr 1fr 1fr 0.8fr;
            padding: 12px 16px;
            background: #f8f8f8;
            border-radius: 8px;
            margin-bottom: 12px;
            font-weight: 500;
            color: #666;
        }

        .member-row {
            display: grid;
            grid-template-columns: 0.8fr 1fr 1fr 1fr 0.8fr;
            padding: 12px 16px;
            border-bottom: 1px solid #f0f0f0;
            align-items: center;
        }

        .member-row:last-child {
            border-bottom: none;
        }

        .status-badge {
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 500;
            text-align: center;
            width: fit-content;
        }

        .status-active {
            background: rgba(211, 19, 52, 0.1);
            color: #D31334;
        }

        .status-inactive {
            background: rgba(102, 102, 102, 0.1);
            color: #666;
        }

        .stats-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
            height: 100%;
        }

        .stat-box {
            background: white;
            border-radius: 12px;
            padding: 20px;
            flex: 1;
        }

        .stat-title {
            font-size: 16px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 16px;
        }


          .schedule-dashboard {
            height: 100%;
            display: grid;
            grid-template-rows: auto 1fr;
            gap: 16px;
        }

        .today-summary {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            height: 100px;
        }

        .summary-card {
            background: white;
            padding: 20px;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .summary-info h3 {
            font-size: 14px;
            color: #666;
            margin-bottom: 8px;
        }

        .summary-info h2 {
            font-size: 24px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .main-schedule {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 16px;
        }

        .schedule-table {
            background: white;
            border-radius: 12px;
            padding: 20px;
        }

        .time-slot {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 16px;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .time {
            color: #666;
            font-size: 14px;
        }

        .appointments {
            display: flex;
            gap: 8px;
        }

        .appointment {
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 14px;
            background: rgba(211, 19, 52, 0.1);
            color: #D31334;
        }

        .trainer {
            font-weight: 500;
        }

        .client {
            color: #666;
        }

        .side-panels {
            display: grid;
            grid-template-rows: 1fr 1fr;
            gap: 16px;
        }

        .panel {
            background: white;
            border-radius: 12px;
            padding: 20px;
        }

        .panel-title {
            font-size: 16px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 16px;
        }
        
        /* Process Section */
        .process {
            padding: 8rem 0;
            background: var(--white);
        }
        .process-container{
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 2rem;
        }   

        .process-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 4rem;
            position: relative;
            padding: 2rem 0;
        }

        .step-connector {
            flex: 1;
            height: 2px;
            background: var(--gray-200);
            position: relative;
        }

        .step-card {
            text-align: center;
            position: relative;
            width: 240px;
            padding: 2rem;
            background: var(--gray-50);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

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

        .step-number {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        .step-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

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

        .step-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }

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

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

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

        .support-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .support-card h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .support-card ul {
            list-style: none;
        }

        .support-card li {
            color: var(--text-light);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .support-card li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--secondary);
            border-radius: 50%;
        }

        @media (max-width: 1024px) {
            .pricing-plans {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .plan-card.featured {
                grid-column: span 2;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 2rem;
            }
            
            .step-connector {
                width: 2px;
                height: 40px;
            }
        }

        @media (max-width: 768px) {
            .pricing-plans {
                grid-template-columns: 1fr;
            }
            
            .plan-card.featured {
                grid-column: auto;
                transform: scale(1);
            }
            
            .process-support {
                grid-template-columns: 1fr;
            }
        }






        /* Device Frame */
        .device-frame {
            max-width: 1440px;
            margin: 2rem auto;
            background: white;
            border-radius: 2rem;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 
                0 0 0 1px rgba(0, 0, 0, 0.05),
                0 20px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .device-header {
            height: 2rem;
            background: var(--bg-light);
            border-bottom: 1px solid var(--border-light);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.5rem;
        }

        .device-header::before {
            content: "";
            width: 8rem;
            height: 0.5rem;
            background: #cbd5e1;
            border-radius: 1rem;
        }

        .dashboard-container {
            padding: 2rem;
        }

        /* Dashboard Header */
        .dashboard-header {
            margin-bottom: 2rem;
        }

        .dashboard-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .dashboard-subtitle {
            color: var(--text-secondary);
            font-size: 0.875rem;
        }

        /* Stat Cards Grid */
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 1rem;
            border: 1px solid var(--border-light);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s;
        }

        .stat-card:hover {
            transform: translateY(-2px);
        }

        .stat-title {
            color: var(--text-secondary);
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
        }

        .stat-value {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: linear-gradient(45deg, var(--primary), #ff4d6d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-delta {
            display: inline-flex;
            align-items: center;
            padding: 0.25rem 0.75rem;
            background: var(--success-light);
            color: var(--success);
            font-size: 0.75rem;
            font-weight: 500;
            border-radius: 1rem;
        }

        .stat-delta.negative {
            background: var(--danger-light);
            color: var(--danger);
        }

        /* Charts Layout */
        .charts-row {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
            height: 400px;
        }

        .chart-container {
            background: white;
            padding: 1.5rem;
            border-radius: 1rem;
            border: 1px solid var(--border-light);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
        }

        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .chart-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .chart-period {
            font-size: 0.875rem;
            color: var(--text-secondary);
            padding: 0.25rem 0.75rem;
            background: var(--bg-light);
            border-radius: 0.5rem;
        }

        .chart-wrapper {
            flex: 1;
            position: relative;
            min-height: 300px;
        }

        /* Member List */
        .member-list {
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            border: 1px solid var(--border-light);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }

        .list-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .list-header {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr 1.5fr 1fr 0.8fr;
            padding: 1rem;
            background: var(--bg-light);
            border-radius: 0.5rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .member-row {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr 1.5fr 1fr 0.8fr;
            padding: 1rem;
            align-items: center;
            border-bottom: 1px solid var(--border-light);
            transition: background-color 0.2s;
        }

        .member-row:hover {
            background: var(--bg-light);
        }

        .member-row:last-child {
            border-bottom: none;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.75rem;
            font-weight: 500;
            width: fit-content;
        }

        .status-active {
            background: var(--success-light);
            color: var(--success);
        }

        .status-inactive {
            background: var(--danger-light);
            color: var(--danger);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 1rem;
            }

            .device-frame {
                margin: 1rem auto;
            }

            .dashboard-container {
                padding: 1.5rem;
            }

            .charts-row {
                grid-template-columns: 1fr;
                height: auto;
            }

            .chart-container {
                height: 400px;
            }

            .list-header, 
            .member-row {
                font-size: 0.875rem;
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }

            .list-header div, 
            .member-row div {
                padding: 0.25rem 0;
            }
        }

        @media (max-width: 480px) {
            .stat-grid {
                grid-template-columns: 1fr;
            }
        }
        
