/* DEVMATRIX Dark Theme CSS */

/* 기본 스타일 초기화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

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

/* 네비게이션 바 - 어두운 배경 */
.navbar {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 30px;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 로고 이미지 */
.logo-image {
    width: 70px;
    height: 70px;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -2px;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
            45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.company-tagline {
    font-size: 0.85rem;
    color: #a0a0c0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 25px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: #b0b0d0;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

/* 인증 링크 (로그인/회원가입) */
.auth-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-link {
    font-size: 13px;
    color: #b0b0d0;
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.auth-link:hover {
    color: #667eea;
}

.auth-divider {
    color: #666680;
    font-size: 13px;
    user-select: none;
}

/* 페이지 전환 */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

/* 헤더 스타일 - 어두운 그라디언트 */
.header {
    position: relative;
    margin-top: 100px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.8) 100%);
    z-index: -1;
}

.header-content {
    text-align: center;
    color: #ffffff;
    z-index: 1;
    padding: 0 20px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    /*text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);*/
    letter-spacing: -0.5px;
}

.main-title i {
    margin-right: 20px;
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.85;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    color: #d0d0e0;
}

/* 탭 네비게이션 - 어두운 테마 */
.tab-nav {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 70px;
    z-index: 99;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.tab-nav.compact {
    padding: 0.5rem 0;
    top: 115px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.tab-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    justify-content: center;
}

.tab-buttons {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 15px 10px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* justify-content: center; */
}

.tab-nav.compact .tab-buttons {
    /* justify-content: center; */
}

.tab-buttons::-webkit-scrollbar {
    display: none;
}

.tab-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 25px;
    border: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.08);
    color: #b0b0d0;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 130px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.tab-nav.compact .tab-button {
    flex-direction: row;
    padding: 8px 15px;
    gap: 8px;
    min-width: auto;
    font-size: 0;
}

.tab-nav.compact .tab-button i {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.tab-nav.compact .tab-button::after {
    content: attr(data-short-name);
    font-size: 0.85rem;
    display: none;
}

.tab-button:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.tab-button.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.tab-button i {
    font-size: 2rem;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

/* 탭 스크롤 버튼 */
.tab-scroll-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #b0b0d0;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.tab-scroll-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

/* 메인 콘텐츠 */
.main-content {
    padding-top: 3rem;
}

#automation-page .main-content {
    padding-top: 0rem;
}

.tab-content {
    display: none;
    overflow: visible;
    margin-top: 2rem;
    scroll-margin-top: 200px;
}

.tab-content.active {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

/* 프로그램 카드 - 어두운 테마 */
.program-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.card-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.card-title h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.version {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.card-body {
    padding: 0;
}

/* 프로그램 설명 */
.program-description {
    margin-bottom: 2.5rem;
}

.program-description h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-description p {
    font-size: 1.05rem;
    color: #d0d0e0;
    line-height: 1.9;
    max-width: 900px;
    word-break: keep-all;
    word-wrap: break-word;
}

.program-description ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

.program-description ul li {
    color: #d0d0e0;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

/* 기능 그리드 - 어두운 테마 */
.features {
    margin-bottom: 2.5rem;
}

.features ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

.features ul li {
    color: #d0d0e0;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    padding-left: 0.4rem;
}

.features h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.8rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    background: rgba(102, 126, 234, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-item p {
    color: #c0c0d0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 사양 정보 */
.specs {
    margin-bottom: 2.5rem;
}

.specs h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.specs ul {
    list-style: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.specs li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #d0d0e0;
}

.specs li:last-child {
    border-bottom: none;
}

.specs strong {
    color: #ffffff;
    min-width: 120px;
    display: inline-block;
}

/* 사양 정보 카테고리 */
.specs-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.specs-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.8rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.specs-category:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.specs-category h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.specs-category h4 i {
    color: #667eea;
    font-size: 1.2rem;
}

.specs-category p {
    color: #d0d0e0;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* 프로그램 미리보기 */
.program-preview {
    margin-bottom: 2.5rem;
}

.program-preview h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.preview-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.preview-item {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.preview-item:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.preview-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.preview-caption {
    padding: 0.8rem;
    text-align: center;
    color: #d0d0e0;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.3);
}

/* SimpleLightbox 커스텀 스타일 */
.sl-overlay {
    background: rgba(0, 0, 0, 0.9) !important;
}

.sl-wrapper .sl-navigation button {
    color: #667eea !important;
}

.sl-wrapper .sl-navigation button:hover {
    color: #ffffff !important;
}

.sl-wrapper .sl-close {
    color: #667eea !important;
}

.sl-wrapper .sl-close:hover {
    color: #ffffff !important;
}

.sl-counter {
    color: #ffffff !important;
}

/* FAQ 섹션 */
.faq-section {
    margin-bottom: 2.5rem;
}

.faq-section h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #667eea;
}

.faq-question {
    padding: 1.2rem 1.5rem;
    background: rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.faq-question i {
    color: #667eea;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.faq-question strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.faq-answer {
    padding: 1.2rem 1.5rem;
}

.faq-answer p {
    color: #d0d0e0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-answer strong {
    color: #667eea;
    font-weight: 600;
}

/* 구매 정보 */
.purchase-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-options {
    margin-bottom: 2rem;
}

.price-options-title {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.price-card.selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.15);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.price-card.recommended {
    /* Recommended badge removed - no special styling */
}

.recommended-badge {
    display: none; /* Hide recommended badge */
}

.period-badge {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.price-per-month {
    font-size: 0.9rem;
    color: #b0b0d0;
    margin-bottom: 0.5rem;
}

.discount-badge {
    display: inline-block;
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* 액션 버튼 컨테이너 */
.action-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    align-items: center;
}

/* 체험하기 버튼 */
.trial-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.trial-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.trial-btn i {
    margin-right: 8px;
}


/* 서비스 페이지 스타일 */
.value-section, .features-section, .success-section {
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 1rem auto;
    border-radius: 2px;
}

/* 가치 카드 */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #667eea;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    /*box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);*/
}

.value-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #d0d0e0;
    line-height: 1.7;
}

/* 기능 그리드 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

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

.feature-header i {
    font-size: 2rem;
    color: #667eea;
}

.feature-header h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: #d0d0e0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.feature-card li {
    color: #c0c0d0;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* 성공 사례 */
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.success-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgb(104 118 223);
    backdrop-filter: blur(20px);
}

.success-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-header i {
    font-size: 2rem;
    color: white !important;
}

.success-header h3 {
    color: white !important;
    font-size: 1.3rem;
    font-weight: 600;
}

.success-content {
    padding: 2rem;
}

.success-quote {
    font-style: italic;
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
}

.success-quote::before {
    content: '"';
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
    font-size: 2rem;
    color: #667eea;
}

.success-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0d0;
}

/* CTA 섹션 */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    margin: 4rem 0;
    /*box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);*/
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #667eea;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.cta-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
}

.cta-secondary:hover {
    background: #FEE500;
    border-color: #FEE500;
    color: #000000;
    transform: translateY(-2px);
    border: 1px solid #667eea;
}

/* 레이어 팝업 모달 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: rgba(26, 26, 46, 0.95);
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}



.modal-container.modal-small {
    max-width: 550px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    background: rgba(26, 26, 46, 0.95);
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
}

.modal-close {
    background: rgba(255, 255, 255);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #3b3b3b;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 59, 48, 0.2);
    color: #ff3b30;
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

/* 모달 본문 스크롤바 커스텀 */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(15, 15, 25, 0.5);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.5);
}

/* Firefox 스크롤바 */
.modal-body {
    scrollbar-width: thin;
    scrollbar-color: rgba(102, 126, 234, 0.3) rgba(15, 15, 25, 0.5);
}

.modal-description {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-left: 4px solid #667eea;
    border-radius: 10px;
}

.modal-description p {
    color: #d0d0e0;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* 인증 폼 */
.auth-form {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d0d0e0;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group label i {
    color: #667eea;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgb(255 255 255);
    border: 1px solid rgb(0 77 217);
    border-radius: 10px;
    color: #595959;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder {
    color: #808090;
}

/* 이메일 인증 관련 스타일 */
.input-with-button {
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-with-button input {
    flex: 1;
}

.verify-send-btn,
.verify-check-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.verify-send-btn:hover,
.verify-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.verify-send-btn:disabled,
.verify-check-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.verify-send-btn.sent {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.verification-group {
    margin-top: 15px;
    padding: 15px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verify-timer {
    margin-top: 10px;
    color: #f59e0b;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.verify-timer.expired {
    color: #ef4444;
}

.verify-status {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.verify-status.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.verify-status.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.verify-status i {
    margin-right: 5px;
}

.form-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c0c0d0;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #667eea;
}

.forgot-password {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #764ba2;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.5);
}

/* 구분선 */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: #808090;
    font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.auth-divider span {
    padding: 0 1rem;
}

/* 소셜 로그인 */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.social-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-btn.kakao {
    background: #FEE500;
    color: #000000;
}

.social-btn.kakao:hover {
    background: #f5dc00;
    transform: translateY(-2px);
}

.social-btn.naver {
    background: #03C75A;
    color: #ffffff;
}

.social-btn.naver:hover {
    background: #02b351;
    transform: translateY(-2px);
}

.social-btn.google {
    background: #ffffff;
    color: #000000;
}

.social-btn.google:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* 인증 푸터 */
.auth-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-footer p {
    color: #b0b0d0;
    font-size: 0.95rem;
}

.auth-footer a,
.switch-modal {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.auth-footer a:hover,
.switch-modal:hover {
    color: #764ba2;
}

.footer {
    background: rgba(15, 15, 35, 0.95);
    color: #e0e0e0;
    padding-top: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left {
    flex-shrink: 0;
    min-width: 250px;
}

.footer-right {
    flex-grow: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

/* 푸터 로고 이미지 */
.footer-logo-image {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(102, 126, 234, 0.3));
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-left p {
    color: #b0b0d0;
    margin-top: 0.5rem;
}

.footer-left i {
    margin-right: 8px;
    color: #667eea;
}

.footer-left .kakao-link {
    color: #b0b0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-left .kakao-link:hover {
    color: #FEE500;
    text-decoration: underline;
}

.footer-business-info p {
    margin-bottom: 0.6rem;
    color: #b0b0d0;
    font-size: 0.8rem;
    line-height: 1.2;
}

.footer-business-info strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 0;
    color: #9090b0;
    font-size: 0.9rem;
}

/* 팝업 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* SweetAlert2 커스텀 스타일 - 다크 테마 */
.swal2-container {
    z-index: 99999 !important;
}

.swal2-popup {
    background: rgba(26, 26, 46, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(20px) !important;
}

.swal2-title {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.8rem !important;
}

.swal2-html-container {
    /*color: #d0d0e0 !important;*/
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

.swal2-confirm {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 32px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
    transition: all 0.3s ease !important;
}

.swal2-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.5) !important;
}

.swal2-cancel {
    background: rgba(108, 117, 125, 0.2) !important;
    border: 1px solid rgba(108, 117, 125, 0.5) !important;
    border-radius: 12px !important;
    padding: 12px 32px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #d0d0e0 !important;
    transition: all 0.3s ease !important;
}

.swal2-cancel:hover {
    background: rgba(108, 117, 125, 0.3) !important;
    border-color: rgba(108, 117, 125, 0.8) !important;
    transform: translateY(-2px) !important;
}

.swal2-actions {
    gap: 12px !important;
}

.swal2-icon {
    border-color: transparent !important;
}

.swal2-icon.swal2-question {
    border-color: #667eea !important;
    color: #667eea !important;
}

.swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: #10b981 !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(16, 185, 129, 0.3) !important;
}

.swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
    background-color: #ef4444 !important;
}

.swal2-icon.swal2-warning {
    border-color: #f59e0b !important;
    color: #f59e0b !important;
}

.swal2-icon.swal2-info {
    border-color: #3b82f6 !important;
    color: #3b82f6 !important;
}

.swal2-close {
    color: #e0e0e0 !important;
    transition: all 0.3s ease !important;
}

.swal2-close:hover {
    color: #ff3b30 !important;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .navbar-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        position: static;
        transform: none;
        width: 100%;
        margin-top: 15px;
    }

    .nav-link {
        padding: 12px 20px;
        font-size: 0.9rem;
        justify-content: center;
        width: 100%;
    }

    .navbar-brand {
        width: 100%;
        justify-content: center;
    }

    .auth-buttons {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 15px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .main-title i {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .tab-button {
        padding: 15px 20px;
        min-width: 110px;
    }

    .program-card {
        padding: 1.8rem;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .card-title h2 {
        font-size: 1.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .purchase-info {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .trial-btn {
        width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
    }

    .price-value {
        font-size: 2rem;
    }

    .value-grid, .features-grid, .success-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-left {
        min-width: 100%;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-right {
        width: 100%;
    }

    .footer-business-info p {
        font-size: 0.85rem;
        text-align: left;
    }

    .modal-container {
        max-width: 95%;
    }

    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .specs-categories {
        grid-template-columns: 1fr;
    }

    .specs-category {
        padding: 1.2rem;
    }

    .faq-question {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .faq-answer {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        height: 300px;
    }

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

    .company-name {
        font-size: 1.5rem;
    }

    .logo-image {
        width: 45px;
        height: 45px;
    }

    .footer-logo-image {
        width: 35px;
        height: 35px;
    }

    .program-card {
        padding: 1.5rem;
    }

    .feature-item {
        padding: 1.2rem;
    }


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

    .cta-section {
        padding: 3rem 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* 체험하기 페이지 스타일 */
.trial-section {
    max-width: 1000px;
    margin: 0 auto;
}

.trial-info-box {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    margin-bottom: 3rem;
    align-items: flex-start;
}

.trial-info-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white !important;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.trial-info-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trial-info-content ul {
    list-style: none;
    padding: 0;
}

.trial-info-content li {
    color: #d0d0e0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.trial-info-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.trial-info-content strong {
    color: #667eea;
    font-weight: 600;
}

/* 체험 프로그램 선택 */
.trial-selection {
    margin-bottom: 3rem;
}

.trial-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.trial-program-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #667eea;
    border-color: #667eea;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trial-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trial-program-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.trial-program-card:hover::before {
    opacity: 1;
}

.trial-program-card.selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.15);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
}

.trial-program-card.selected::before {
    opacity: 1;
}

.trial-program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white !important;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s ease;
}

.trial-program-card:hover .trial-program-icon {
    transform: scale(1.1);
}

.trial-program-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trial-program-card p {
    color: #c0c0d0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.trial-check {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: #10b981;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0);
}

.trial-program-card.selected .trial-check {
    opacity: 1;
    transform: scale(1);
}

/* 체험 신청 폼 */
.trial-form-section {
    background: rgb(55 55 55 / 5%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgb(67 67 67 / 10%);
}

.trial-form {
    max-width: 600px;
    margin: 0 auto;
}

.trial-form-group {
    margin-bottom: 2rem;
}

.trial-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5555f9;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.trial-form-group label i {
    color: #667eea;
}

.trial-form-group input[type="email"],
.trial-form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    background: rgb(255 255 255 / 100%);
    border: 1px solid rgb(53 114 189 / 70%);
    border-radius: 12px;
    color: #353535;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.trial-form-group input[type="email"]:focus,
.trial-form-group input[type="tel"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.trial-form-group input[type="email"][readonly] {
    background: rgb(0 0 0 / 5%);
    cursor: not-allowed;
    color: #b0b0d0;
}

.form-help-text {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #9090b0;
    font-style: italic;
}

.form-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0 1.5rem 0;
    text-align: center;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-divider span {
    padding: 0 1rem;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.trial-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem;
    background: rgb(216 218 245);
    border-left: 4px solid #5468e5;
    border-radius: 10px;
    margin-bottom: 2rem;
}
.trial-notice i {
    font-size: 1.5rem;
    color: #5468e5;
    flex-shrink: 0;
}

.trial-notice p {
    color: #d0d0e0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.trial-notice strong {
    color: #f59e0b;
    font-weight: 600;
}

.trial-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
}

.trial-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.5);
}

.trial-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* 프로그램 다운로드 모달 */
.download-success-icon {
    text-align: center;
    margin-bottom: 2rem;
}

.download-success-icon i {
    font-size: 5rem;
    color: #10b981;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.download-info {
    text-align: center;
    margin-bottom: 2rem;
}

.download-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.download-info p {
    color: #d0d0e0;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.download-notice {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    margin-top: 0.5rem;
}

.download-notice strong {
    color: #667eea;
}

.download-instructions {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-instructions h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.download-instructions ol {
    padding-left: 1.5rem;
    color: #d0d0e0;
}

.download-instructions li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.download-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.5);
}

.modal-close-btn {
    width: 100%;
    padding: 14px;
    background: #FFFFFF;
    border: 1px solid rgba(108, 117, 125, 0.5);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-close-btn:hover {
    background: rgba(108, 117, 125, 0.3);
    border-color: rgba(108, 117, 125, 0.8);
    transform: translateY(-2px);
}

/* 구매하기 모달 */
.purchase-summary {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.purchase-summary h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.purchase-detail {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.detail-label {
    color: #b0b0d0;
    font-size: 1rem;
}

.detail-value {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.price-highlight {
    color: #667eea;
    font-size: 1.5rem;
}

.purchase-form {
    margin-top: 1.5rem;
}

.required {
    color: #ff6b6b;
    font-weight: 700;
}

.payment-info-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgb(169 169 169);
}

.payment-info-box h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-info-box h4 i {
    color: #667eea;
}

.bank-info {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.bank-label {
    color: #b0b0d0;
    font-size: 0.95rem;
}

.bank-value {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.payment-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-left: 3px solid #f59e0b;
    border-radius: 8px;
}

.payment-notice i {
    color: #f59e0b;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-notice p {
    color: #d0d0e0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.purchase-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cancel-btn,
.confirm-purchase-btn {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cancel-btn {
    background: rgba(108, 117, 125, 0.2);
    border: 1px solid rgba(108, 117, 125, 0.5);
    color: #676767;
}

.cancel-btn:hover {
    background: rgba(108, 117, 125, 0.3);
    border-color: rgba(108, 117, 125, 0.8);
    transform: translateY(-2px);
}

.confirm-purchase-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.confirm-purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4) !important;
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content.active {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tab-button {
    animation: slideInLeft 0.4s ease-out;
}

/* 추가 애니메이션 효과 */
.program-card {
    animation: fadeInUp 0.8s ease-out;
}

.feature-item {
    animation: fadeInUp 0.6s ease-out;
}

.feature-item:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.3s;
}

.value-card, .feature-card, .success-card {
    animation: fadeInUp 0.6s ease-out;
}

.value-card:nth-child(2), .feature-card:nth-child(2), .success-card:nth-child(2) {
    animation-delay: 0.1s;
}

.value-card:nth-child(3), .feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.trial-program-card {
    animation: fadeInUp 0.6s ease-out;
}

.trial-program-card:nth-child(2) {
    animation-delay: 0.1s;
}

.trial-program-card:nth-child(3) {
    animation-delay: 0.2s;
}

/* SimpleLightbox 캡션 스타일 오버라이드 */
/* 캡션을 이미지 아래로 배치 (이미지 위에 겹치지 않도록) */
.sl-wrapper .sl-caption {
    position: relative !important;
    bottom: auto !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: #ffffff !important;
    padding: 15px 20px !important;
    text-align: center !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-top: 0 !important;
}

/* 라이트박스 이미지 컨테이너 조정 */
.sl-wrapper .sl-image {
    margin-bottom: 0 !important;
}

/* 캡션과 이미지 사이 간격 제거 */
.sl-wrapper .sl-image img {
    display: block !important;
    max-height: calc(90vh - 60px) !important; /* 캡션 공간 확보 */
}