/* ===============================================
   ABC Fulfill 홈페이지 - 고급 스타일
   =============================================== */

:root {
    --primary-color: #667eea;
    --primary-dark: #5a67d8;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --danger-color: #f56565;
    --info-color: #4299e1;
    --light-bg: #f7fafc;
    --dark-bg: #1a202c;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
}

/* ===============================================
   네비게이션 바
   =============================================== */

.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* ===============================================
   네비게이션 바 (Minimal)
   =============================================== */

.navbar-minimal {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.navbar-minimal .navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    transition: color 0.3s ease;
}

.navbar-minimal .navbar-brand i {
    color: var(--primary-color);
}

.navbar-minimal .navbar-brand:hover {
    color: var(--primary-color);
}

.navbar-minimal .nav-link {
    font-weight: 500;
    color: #4a5568 !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.navbar-minimal .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-minimal .btn-primary {
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
}

/* ===============================================
   히어로 섹션
   =============================================== */

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 Q300,100 600,50 T1200,50 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-section h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-buttons {
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

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

.btn-outline-primary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

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

/* ===============================================
   기능 프리뷰 섹션
   =============================================== */

.features-preview {
    padding: 80px 0;
    background: var(--light-bg);
}

.features-preview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.features-preview h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.card-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===============================================
   CTA 섹션
   =============================================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-section .lead {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* ===============================================
   가격 카드
   =============================================== */

.pricing-card {
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
}

.pricing-card.featured .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.badge.bg-warning {
    background: linear-gradient(135deg, #f093fb, #f5576c) !important;
}

/* ===============================================
   게시판 스타일
   =============================================== */

.board-container h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.board-container .card-title {
    font-size: 0.95rem;
    font-weight: 600;
}

.board-container .form-label {
    font-size: 0.85rem;
    font-weight: 600;
}

.board-container .table {
    font-size: 0.85rem;
}

.board-container .table thead th {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.6rem 0.5rem;
}

.board-container .table tbody td {
    padding: 0.6rem 0.5rem;
    vertical-align: middle;
}

.board-detail-title {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
}

.board-content {
    font-size: 0.9rem;
    line-height: 1.7;
}

.badge {
    padding: 0.25em 0.55em;
    font-size: 0.7rem;
    font-weight: 600;
}

/* 게시판 카드 헤더 */
.board-card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* 비밀번호 확인 모달 */
.password-modal-title {
    font-size: 1.15rem;
}

.password-modal-title i {
    font-size: 1.8rem;
}

/* 게시판 버튼 */
.board-container .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.board-container .btn-lg {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
}

/* 게시판 아이콘 크기 */
.board-container .fas,
.board-container .far {
    font-size: 0.9em;
}

.table-hover tbody tr {
    transition: all 0.3s ease;
}

.table-hover tbody tr:hover {
    background-color: rgba(102, 126, 234, 0.05);
    transform: scale(1.01);
    box-shadow: var(--shadow-sm);
}

.badge {
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge.bg-danger {
    background: linear-gradient(135deg, #f56565, #c53030) !important;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, #ed8936, #dd6b20) !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, #4299e1, #3182ce) !important;
}

.badge.bg-success {
    background: linear-gradient(135deg, #48bb78, #38a169) !important;
}

.badge.bg-secondary {
    background: linear-gradient(135deg, #a0aec0, #718096) !important;
}

/* ===============================================
   폼 스타일
   =============================================== */

.form-control, .form-select {
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    padding: 0.6rem 0.9rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.form-text {
    font-size: 0.8rem;
}

/* 게시판 카드 스타일 */
.board-container .card {
    font-size: 0.9rem;
}

.board-container .card-header {
    padding: 0.75rem 1rem;
}

.board-container .card-body {
    padding: 1rem;
}

.board-container .card-footer {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
}

/* Alert 스타일 */
.board-container .alert {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
}

/* ===============================================
   애니메이션
   =============================================== */

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

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

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

/* ===============================================
   반응형
   =============================================== */

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .features-preview h2 {
        font-size: 2rem;
    }
    
    .navbar-minimal .nav-link {
        font-size: 0.85rem;
    }
    
    .navbar-minimal .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* ===============================================
   유틸리티 클래스
   =============================================== */

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

.shadow-elegant {
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
}

.rounded-elegant {
    border-radius: 20px;
}

.transition-all {
    transition: all 0.3s ease;
}

/* ===============================================
   푸터 스타일
   =============================================== */

.footer-modern {
    background: linear-gradient(180deg, #1a202c 0%, #2d3748 100%);
    color: #e2e8f0;
    font-size: 0.9rem;
}

.footer-main {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand i {
    display: block;
}

.footer-brand h5 {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-title {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: #cbd5e0;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
}

.footer-contact a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

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

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom small {
    color: #a0aec0;
    font-size: 0.8rem;
}

.footer-legal a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-legal span {
    color: #4a5568;
}

@media (max-width: 768px) {
    .footer-main {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-title {
        margin-top: 1rem;
    }
    
    .footer-bottom .row > div {
        margin-bottom: 1rem;
    }
    
    .footer-legal {
        margin-top: 0.5rem;
    }
}

/* ===============================================
   미니멀 히어로 섹션 (codai.kr 스타일)
   =============================================== */

.hero-minimal {
    padding: 120px 0 100px;
    background: #ffffff;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge .badge {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    border: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    color: #718096;
    line-height: 1.8;
    font-weight: 400;
}

.hero-cta .btn {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 2.5rem;
    border-radius: 12px;
}

/* ===============================================
   미니멀 기능 카드
   =============================================== */

.features-minimal {
    padding: 80px 0;
    background: #fafbfc;
}

.feature-card-minimal {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.feature-card-minimal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.feature-icon-minimal {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon-minimal i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.feature-title-minimal {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
    text-align: center;
}

.feature-desc-minimal {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

/* ===============================================
   Why Section
   =============================================== */

.why-section {
    padding: 80px 0;
}

.section-title-minimal {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-subtitle-minimal {
    font-size: 1.1rem;
    color: #718096;
}

.why-card {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-3px);
}

.why-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.why-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.why-desc {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

/* ===============================================
   CTA Section (Minimal)
   =============================================== */

.cta-minimal {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-title-minimal {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.cta-desc-minimal {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-minimal .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-minimal .btn-primary:hover {
    background: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===============================================
   가격 페이지 (codai.kr 스타일)
   =============================================== */

.pricing-hero {
    padding: 80px 0 60px;
    background: #ffffff;
}

.pricing-main-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.pricing-main-subtitle {
    font-size: 1.15rem;
    color: #718096;
    font-weight: 400;
}

/* 가격 카드 */
.pricing-cards {
    padding: 40px 0 80px;
    background: #fafbfc;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    padding: 0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.pricing-card.featured:hover {
    box-shadow: 0 24px 50px rgba(102, 126, 234, 0.25);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.pricing-card-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.plan-desc {
    font-size: 0.95rem;
    color: #718096;
    margin: 0;
}

.pricing-card-body {
    padding: 0 2rem 2rem;
    flex: 1;
}

.price-section {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
    white-space: nowrap;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1;
}

.price-period {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 500;
}

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

.feature-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #2d3748;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pricing-card-footer {
    padding: 0 2rem 2.5rem;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 0.875rem;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    color: #2d3748;
    background: white;
}

.btn-plan:hover {
    background: #f7fafc;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-plan.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.btn-plan.primary:hover {
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

/* 포함된 기능 */
.pricing-features {
    background: white;
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
}

.included-feature {
    text-align: center;
    padding: 1.5rem;
}

.included-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.included-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.included-feature p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

/* FAQ */
.pricing-faq {
    padding: 80px 0;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.faq-answer {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.7;
    margin: 0;
}

/* CTA */
.pricing-cta {
    background: white;
}

.pricing-cta .cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
}

.pricing-cta .cta-desc {
    font-size: 1.1rem;
    color: #718096;
}

/* 반응형 */
@media (max-width: 992px) {
    .pricing-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-main-title {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-hero {
        padding: 60px 0 40px;
    }
    
    .pricing-cards,
    .pricing-features,
    .pricing-faq {
        padding: 60px 0;
    }
    
    .pricing-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* 기존 히어로 섹션 숨김 */
/* .hero-section {
    display: none;
}

.features-preview {
    display: none;
}

.cta-section {
    display: none;
} */
