/* ====================================================
   INDEX.CSS - 홈페이지(index.html) 전용 스타일
   index.html에서만 사용되는 고유한 스타일
   ==================================================== */

/* 전체 페이지 가로 스크롤 방지 */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* 모든 섹션과 컨테이너 제한 */
.why-choose-us,
.how-it-works,
.features,
.pricing,
.comparison,
.contact,
.footer,
.hero,
.reviews,
.partners {
    overflow: visible;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Premium Hero Section - 홈페이지 메인 섹션 */
.hero {
    padding: 7rem 0 3rem;
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 30%, rgba(59, 130, 246, 0.12) 100%);
    position: relative;
    overflow: visible;
    min-height: 65vh;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

/* 애니메이션 배경 (영상 없을 때 대체) */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100vw;
    max-width: 1000px;
    height: 100vw;
    max-height: 1000px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    opacity: 0.6;
    filter: blur(80px);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-100px, 50px) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: translate(50px, -50px) scale(0.95);
        opacity: 0.5;
    }
}

/* 히어로 배경 비디오 */
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 0;
    filter: blur(0px);
}

/* 비디오 오버레이 */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(240, 249, 255, 0.5) 0%,
        rgba(224, 242, 254, 0.45) 30%,
        rgba(191, 219, 254, 0.4) 60%,
        rgba(147, 197, 253, 0.35) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.hero-title {
    font-family: 'Noto Sans KR', 'Malgun Gothic', '맑은 고딕', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--gray-900);
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
    animation: fadeInUp 1s ease 0.1s both;
}

.hero-description {
    font-family: 'Malgun Gothic', '맑은 고딕', 'Apple SD Gothic Neo', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.2s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.015em;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0 4rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item .stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-900) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-item .stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, var(--primary-300) 50%, transparent 100%);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Why Choose Us Section - 차별점 섹션 */
.why-choose-us {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    padding: 3rem 0;
    position: relative;
}

.why-choose-us .section-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(59, 130, 246, 0.10) 100%);
    color: var(--primary-600);
    border-color: rgba(59, 130, 246, 0.15);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    text-align: left;
    border: 2px solid rgba(59, 130, 246, 0.12);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.08);
    overflow: visible;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.1s ease-out;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.why-card:hover {
    transform: scale(1.08) translateZ(0);
    filter: drop-shadow(0 20px 48px rgba(59, 130, 246, 0.25));
    z-index: 10;
}

.why-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.why-card-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

/* Premium Why Cards - 고급스러운 그라데이션 배경 */
.why-card:nth-child(6n+1) { background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%); }
.why-card:nth-child(6n+2) { background: linear-gradient(135deg, #fff 0%, #faf5ff 100%); }
.why-card:nth-child(6n+3) { background: linear-gradient(135deg, #fff 0%, #ecfdf5 100%); }
.why-card:nth-child(6n+4) { background: linear-gradient(135deg, #fff 0%, #fef3c7 100%); }
.why-card:nth-child(6n+5) { background: linear-gradient(135deg, #fff 0%, #fce7f3 100%); }
.why-card:nth-child(6n) { background: linear-gradient(135deg, #fff 0%, #e0f2fe 100%); }

.why-card-header h3 {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.3;
}

.why-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    font-weight: 500;
    margin: 0;
}

/* 카드 하이라이트 배지 */
.why-card-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    margin-top: auto;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.highlight-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-800);
    letter-spacing: -0.01em;
}

/* How It Works 섹션 */
.how-it-works {
    background: #f8fafc;
    padding: 3rem 0;
}

.how-it-works .section-badge {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06) 0%, rgba(139, 92, 246, 0.10) 100%);
    color: var(--accent-600);
    border-color: rgba(139, 92, 246, 0.15);
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.process-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 5rem;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(180deg, var(--primary-300) 0%, var(--primary-500) 100%);
    z-index: -1;
}

.process-number {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.process-content {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.process-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.process-content h3 {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.process-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    font-weight: 300;
}

/* Features Section - 기능 섹션 */
.features {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.features .section-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(59, 130, 246, 0.10) 100%);
    color: var(--primary-600);
    border-color: rgba(59, 130, 246, 0.15);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    border: 3px solid rgba(37, 99, 235, 0.3);
    transition: transform 0.1s ease-out;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15);
    text-align: center;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Premium Feature Cards - 색상별 배경 */
.feature-card[data-color="blue"],
.feature-card[data-color="cyan"],
.feature-card[data-color="teal"],
.feature-card[data-color="red"],
.feature-card[data-color="violet"],
.feature-card[data-color="amber"] { background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%); border: 2px solid rgba(59, 130, 246, 0.08); }
.feature-card[data-color="purple"] { background: linear-gradient(135deg, #fff 0%, #faf5ff 100%); border: 2px solid rgba(139, 92, 246, 0.08); }
.feature-card[data-color="green"] { background: linear-gradient(135deg, #fff 0%, #ecfdf5 100%); border: 2px solid rgba(16, 185, 129, 0.08); }
.feature-card[data-color="orange"] { background: linear-gradient(135deg, #fff 0%, #fef3c7 100%); border: 2px solid rgba(245, 158, 11, 0.08); }
.feature-card[data-color="pink"] { background: linear-gradient(135deg, #fff 0%, #fce7f3 100%); border: 2px solid rgba(236, 72, 153, 0.08); }
.feature-card[data-color="indigo"] { background: linear-gradient(135deg, #fff 0%, #e0f2fe 100%); border: 2px solid rgba(14, 165, 233, 0.08); }

.feature-card:hover {
    transform: scale(1.08) translateZ(0);
    filter: drop-shadow(0 20px 48px rgba(37, 99, 235, 0.25));
}

.feature-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-card h3 {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--gray-700);
    font-weight: 500;
}

/* Reviews Section - 후기 섹션 */
.reviews {
    background: linear-gradient(180deg,
        #f0f9ff 0%,
        #e0f2fe 20%,
        #dbeafe 40%,
        #e0f2fe 60%,
        #f0f9ff 100%
    );
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    padding: 5rem 0;
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(147, 197, 253, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(191, 219, 254, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(224, 242, 254, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.reviews .container {
    position: relative;
    z-index: 1;
}

.reviews .section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.reviews-slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.reviews-row {
    display: flex;
    gap: 1.5rem;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    width: max-content;
}

.reviews-row-left {
    animation: slideLeft 30s linear infinite;
}

.reviews-row:hover {
    animation-play-state: paused;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    min-width: 280px;
    max-width: 320px;
    width: 300px;
    flex-shrink: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.author-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card:hover .author-avatar-large {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.35);
    border-color: rgba(255, 255, 255, 1);
}

.review-text {
    font-family: '맑은 고딕', 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gray-800);
    font-weight: 600;
    margin: 0;
    word-wrap: break-word;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Comparison Table Section - 비교 섹션 */
.comparison {
    background: #ffffff;
    padding: 3rem 0;
}

.comparison .section-badge {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(34, 197, 94, 0.10) 100%);
    color: var(--success-600);
    border-color: rgba(34, 197, 94, 0.15);
}

.comparison-table {
    max-width: min(1000px, 100%);
    margin: 4rem auto 0;
    overflow: hidden;
    overflow-x: auto;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-800) 100%);
}

.comparison-table th {
    background: transparent;
    color: white;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
}

.comparison-table th:first-child {
    width: 40%;
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    font-size: 1rem;
}

.comparison-table tr:nth-child(even) {
    background: rgba(59, 130, 246, 0.02);
}

.comparison-table tr:hover {
    background: rgba(59, 130, 246, 0.05);
}

.comparison-check {
    color: var(--success-600);
    font-size: 1.5rem;
    font-weight: bold;
}

.comparison-cross {
    color: var(--gray-300);
    font-size: 1.5rem;
}

/* FAQ Section */
.faq {
    background: linear-gradient(180deg, #fefefe 0%, #f0f9ff 100%);
    padding: 3rem 0;
}

.faq .section-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(59, 130, 246, 0.10) 100%);
    color: var(--primary-600);
    border-color: rgba(59, 130, 246, 0.15);
}

.faq-container {
    max-width: 800px;
    margin: 4rem auto 0;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--gray-50);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: white;
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--primary-800);
    font-weight: 700;
}

.faq-question:hover {
    background: rgba(168, 85, 247, 0.05);
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    font-weight: 300;
}

/* Partners Section - 파트너 섹션 */
.partners {
    background: var(--gray-50);
    padding: 3rem 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.partners-content {
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.partners-title {
    font-family: 'Noto Sans KR', 'Pretendard', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 4rem;
}

.partners-grid {
    display: flex;
    gap: 6rem;
    align-items: center;
    animation: infiniteSlide 40s linear infinite;
    width: max-content;
}

@keyframes infiniteSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

.partners-grid:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex-shrink: 0;
    width: min(400px, 90vw);
    height: 200px;
    padding: 2.5rem;
    background: white;
    border: 2px solid rgba(59, 130, 246, 0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

.partner-logo:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(59, 130, 246, 0.35);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Pricing Section - 가격 섹션 */
.pricing {
    background: #eff6ff;
}

.pricing .section-badge {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.06) 0%, rgba(139, 92, 246, 0.10) 100%);
    color: var(--accent-600);
    border-color: rgba(139, 92, 246, 0.15);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 1.5rem;
    border: 2px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-300);
}

.pricing-card.featured {
    border-color: var(--primary-600);
    border-width: 3px;
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    right: 2rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 9999px;
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 300;
}

.pricing-price {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--gray-100);
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-700);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-period {
    font-size: 0.9375rem;
    color: var(--gray-500);
    font-weight: 300;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 0;
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 300;
}

.pricing-features svg {
    stroke: var(--primary-700);
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    padding: 2rem;
    background: var(--primary-50);
    border-radius: 1rem;
    border: 1px solid var(--primary-200);
}

.pricing-note p {
    font-size: 0.9375rem;
    color: var(--gray-800);
    font-weight: 500;
    margin: 0.5rem 0;
}

.pricing-card .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    font-weight: 700 !important;
}

.pricing-card .btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
}

/* Contact Section - 연락처 섹션 */
.contact {
    background: #f0fdf4;
}

.contact .section-badge {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(34, 197, 94, 0.10) 100%);
    color: var(--success-600);
    border-color: rgba(34, 197, 94, 0.15);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 1.5rem 0 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.contact-info > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--primary-50);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 0.75rem;
    color: var(--primary-600);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.375rem;
}

.contact-item p {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--primary-600);
    margin-bottom: 0.25rem;
}

.contact-item span {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 300;
}

.contact-form {
    padding: 3rem;
    background: var(--gray-50);
    border-radius: 1.5rem;
    border: 1px solid var(--gray-200);
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.625rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-900);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Section Divider - 섹션 구분선 */
.section-divider {
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom,
        rgba(240, 249, 255, 0) 0%,
        rgba(240, 249, 255, 0.5) 50%,
        rgba(240, 249, 255, 0) 100%
    );
}

.divider-line {
    position: relative;
    width: 100%;
    max-width: min(800px, 90vw);
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(59, 130, 246, 0.3) 20%,
        rgba(59, 130, 246, 0.6) 50%,
        rgba(59, 130, 246, 0.3) 80%,
        transparent 100%
    );
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-ornament {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle,
        rgba(59, 130, 246, 0.15) 0%,
        rgba(59, 130, 246, 0.05) 50%,
        transparent 100%
    );
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-ornament::before {
    content: '◆';
    font-size: 1.2rem;
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    animation: ornamentPulse 3s ease-in-out infinite;
}

@keyframes ornamentPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* 애니메이션 클래스 */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive Design - 반응형 */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-timeline {
        padding: 0 1rem;
    }

    .process-step {
        flex-direction: column !important;
        text-align: center;
        align-items: center;
    }

    .process-step::after {
        content: '';
        display: block !important;
        position: absolute;
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: 5rem !important;
        width: 2px !important;
        height: calc(100% - 1rem) !important;
        background: linear-gradient(180deg, var(--primary-300) 0%, var(--primary-500) 100%) !important;
        z-index: -1 !important;
    }

    .process-step:last-child::after {
        display: none !important;
    }

    .comparison-table {
        overflow-x: visible;
        margin: 2rem 0;
        border-radius: 0.75rem;
        border-spacing: 0;
    }

    .comparison-table table {
        width: 100%;
        display: table;
        table-layout: fixed;
        border-collapse: separate;
        border-spacing: 0;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.25rem 0.0625rem;
        font-size: 0.625rem;
        white-space: normal;
        word-break: keep-all;
        line-height: 1.2;
        border-bottom: 1px solid var(--gray-100);
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        width: 38%;
        text-align: center;
        padding-left: 0.125rem;
        padding-right: 0.125rem;
        font-size: 0.5625rem;
    }

    .comparison-table th:not(:first-child),
    .comparison-table td:not(:first-child) {
        width: 31%;
        text-align: center;
        font-size: 0.5rem;
        padding-left: 0.03125rem;
        padding-right: 0.03125rem;
    }

    .comparison-table th {
        padding-top: 0.375rem;
        padding-bottom: 0.375rem;
        font-size: 0.6875rem;
    }

    .comparison-check {
        font-size: 0.9375rem;
        color: var(--success-600);
    }

    .comparison-cross {
        font-size: 0.9375rem;
        color: #ef4444;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        margin: 0;
        padding: 2rem;
        text-align: center;
        border-radius: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-actions {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-actions .btn {
        flex: 1;
        min-width: 0;
        max-width: 180px;
        padding: 1rem 1.25rem;
        font-size: 0.8125rem;
        gap: 0.5rem;
        white-space: nowrap;
    }

    .hero-actions .btn-icon {
        width: 2rem;
        height: 2rem;
    }

    .hero-actions .btn-icon svg {
        width: 16px;
        height: 16px;
    }

    .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
        margin: 2rem 0 3rem;
    }

    .hero-stat-item .stat-number {
        font-size: 2rem;
    }

    .hero-stat-item .stat-label {
        font-size: 0.8125rem;
    }

    .stat-divider {
        width: 1px;
        height: 45px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem 0 1.5rem;
    }

    .pricing-card {
        flex: 0 0 85%;
        min-width: 280px;
        max-width: 320px;
        scroll-snap-align: center;
        padding: 2rem 1.5rem;
    }

    .pricing-header h3 {
        font-size: 1.375rem;
        margin-bottom: 0.375rem;
    }

    .pricing-header p {
        font-size: 0.875rem;
    }

    .price-amount {
        font-size: 2.25rem;
    }

    .price-period {
        font-size: 0.8125rem;
    }

    .pricing-features li {
        padding: 0.625rem 0;
        font-size: 0.875rem;
    }

    .pricing-features svg {
        width: 18px;
        height: 18px;
    }

    .pricing-card .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-items {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        overflow-x: visible;
        flex-wrap: nowrap;
    }

    .contact-item {
        flex: 1;
        min-width: 0;
        padding: 1rem 0.75rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-item h4 {
        font-size: 0.8125rem;
        margin-bottom: 0.25rem;
    }

    .contact-item p {
        font-size: 0.75rem;
        margin-bottom: 0.125rem;
        word-break: break-all;
    }

    .contact-item span {
        font-size: 0.6875rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-card {
        padding: 1.5rem;
    }

    .why-card-number {
        font-size: 2rem;
    }

    .why-card-header h3 {
        font-size: 1.125rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .faq-container {
        padding: 0 1rem;
    }

    .comparison-table {
        margin: 2rem 0;
        border-radius: 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table table {
        min-width: 600px;
    }

    .process-number {
        margin: 0 auto 1rem;
    }

    .section-divider {
        padding: 2rem 0;
    }

    .divider-line {
        max-width: 90%;
    }

    .divider-ornament {
        width: 60px;
        height: 60px;
    }

    .divider-ornament::before {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1rem;
        margin: 1.5rem 0 2.5rem;
    }

    .hero-stat-item .stat-number {
        font-size: 1.75rem;
    }

    .hero-stat-item .stat-label {
        font-size: 0.75rem;
    }

    .stat-divider {
        height: 40px;
    }

    .hero-actions {
        gap: 0.5rem;
    }

    .hero-actions .btn {
        max-width: 160px;
        padding: 0.875rem 1rem;
        font-size: 0.75rem;
        gap: 0.375rem;
    }

    .hero-actions .btn-icon {
        width: 1.75rem;
        height: 1.75rem;
    }

    .hero-actions .btn-icon svg {
        width: 14px;
        height: 14px;
    }
}

/* ====================================================
   고정 사이드 링크 박스
   ==================================================== */

.fixed-sidebar {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fixed-sidebar:hover {
    box-shadow: 0 15px 50px -10px rgba(59, 130, 246, 0.25),
                0 0 0 1px rgba(59, 130, 246, 0.2);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.04) 100%);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    text-decoration: none;
    color: #1f2937;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    min-width: 165px;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    border-radius: 14px;
}

.sidebar-link svg {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sidebar-link-text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.sidebar-title {
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.sidebar-subtitle {
    font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.3;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    transform: translateX(-8px) scale(1.02);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.15),
                -8px 0 25px -5px rgba(0, 0, 0, 0.1);
}

.sidebar-link:hover::before {
    opacity: 1;
}

.sidebar-link:hover svg {
    color: white !important;
    stroke: white !important;
}

.sidebar-link:hover .sidebar-title,
.sidebar-link:hover .sidebar-subtitle {
    color: white;
    opacity: 1;
}

.sidebar-link:active {
    transform: translateX(-4px) scale(0.98);
}

/* 각 링크별 색상 커스터마이징 - 아이콘만 색상 적용 */
.sidebar-link:nth-child(1) svg {
    color: #92400e;
    stroke: #92400e;
}

.sidebar-link:nth-child(1)::before {
    background: linear-gradient(135deg, #92400e 0%, #78350f 100%);
}

.sidebar-link:nth-child(2) svg {
    color: #14b8a6;
    stroke: #14b8a6;
}

.sidebar-link:nth-child(2)::before {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

/* 반응형 - 태블릿 */
@media (max-width: 1200px) {
    .fixed-sidebar { right: 1.5rem; padding: 0.875rem; gap: 0.75rem; }
    .sidebar-link { min-width: 180px; padding: 1rem 1.25rem; }
    .sidebar-link svg { width: 24px; height: 24px; }
    .sidebar-title { font-size: 0.9375rem; }
    .sidebar-subtitle { font-size: 0.625rem; }
}

@media (max-width: 1024px) {
    .fixed-sidebar { right: 1rem; padding: 0.75rem; gap: 0.625rem; }
    .sidebar-link { min-width: 160px; padding: 0.875rem 1rem; }
    .sidebar-link svg { width: 22px; height: 22px; }
    .sidebar-title { font-size: 0.875rem; }
    .sidebar-subtitle { font-size: 0.5625rem; }
    .sidebar-link:hover { transform: translateX(-6px) scale(1.015); }
}

/* 반응형 - 모바일 */
@media (max-width: 768px) {
    .fixed-sidebar { right: 0.75rem; padding: 0.5rem; gap: 0.5rem; border-radius: 14px; }
    .sidebar-link { min-width: auto; width: 50px; height: 50px; padding: 0.75rem; border-radius: 12px; justify-content: center; }
    .sidebar-link svg { width: 24px; height: 24px; }
    .sidebar-link-text { display: none; }
    .sidebar-link:hover { transform: translateX(-4px) scale(1.05); }
}

@media (max-width: 480px) {
    .fixed-sidebar { right: 0.5rem; padding: 0.375rem; gap: 0.375rem; border-radius: 12px; }
    .sidebar-link { width: 45px; height: 45px; padding: 0.625rem; border-radius: 10px; }
    .sidebar-link svg { width: 20px; height: 20px; }
    .sidebar-link:hover { transform: translateX(-3px) scale(1.03); }
}

