/* CTA 섹션 */
.cta-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    text-align: center;
}

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

/* 메인 타이틀 */
.cta-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

/* 서브타이틀 */
.cta-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* 메인 CTA 버튼 */
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    background: #000;
}

.cta-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    animation: arrowMove 2s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.cta-primary:hover svg {
    animation-play-state: paused;
    transform: translateX(8px);
}

/* 반응형 */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-primary {
        padding: 16px 32px;
        font-size: 1rem;
    }
}