/* 6-2 지금이 구조를 바꿀 순간입니다 섹션 전용 스타일 */

.shopping-final-cta-section {
    background: linear-gradient(135deg, #5B21B6 0%, #14B8A6 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* 배경 효과 */
.shopping-final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 섹션 타이틀 */
.final-cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* 리드 카피 */
.final-cta-lead {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 1);
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 본문 영역 */
.final-cta-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.final-cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #111827;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* CTA 메인 영역 */
.cta-main-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

/* 진단 혜택 영역 */
.diagnosis-benefits {
    text-align: center;
}

.diagnosis-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #14B8A6, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.diagnosis-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.diagnosis-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
}

/* CTA 버튼 영역 */
.cta-button-area {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #F59E0B, #F43F5E);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
    background: linear-gradient(135deg, #F43F5E, #F59E0B);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* 긴급성 메시지 */
.urgency-message {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #EF4444;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.urgency-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #EF4444, #F59E0B, #EF4444);
    animation: slideRight 2s linear infinite;
}

@keyframes slideRight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.urgency-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #DC2626;
    margin: 0;
}

.urgency-count {
    font-size: 1.3rem;
    font-weight: 700;
    color: #DC2626;
    animation: countPulse 1s ease-in-out infinite;
}

@keyframes countPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* 혜택 리스트 */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border-left: 4px solid #14B8A6;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #14B8A6, #3B82F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    margin: 0;
}

/* 시계 아이콘 */
.clock-icon {
    display: inline-block;
    margin-right: 0.5rem;
    animation: clockPulse 2s ease-in-out infinite;
}

@keyframes clockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.final-cta-title {
    animation: fadeInUp 0.8s ease-out;
}

.final-cta-lead {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.final-cta-content {
    animation: scaleIn 0.8s ease-out 0.4s both;
}

.cta-main-area {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.urgency-message {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .cta-main-area {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .shopping-final-cta-section {
        padding: 80px 0;
    }
    
    .final-cta-title {
        font-size: 2.5rem;
    }
    
    .final-cta-lead {
        font-size: 1.4rem;
    }
    
    .final-cta-content {
        padding: 2rem;
    }
    
    .final-cta-text {
        font-size: 1.1rem;
    }
    
    .diagnosis-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .diagnosis-title {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .urgency-text {
        font-size: 1rem;
    }
    
    .urgency-count {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .final-cta-title {
        font-size: 2rem;
    }
    
    .final-cta-lead {
        font-size: 1.2rem;
    }
    
    .final-cta-content {
        padding: 1.5rem;
    }
    
    .final-cta-text {
        font-size: 1rem;
    }
    
    .diagnosis-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .diagnosis-title {
        font-size: 1.1rem;
    }
    
    .diagnosis-description {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .benefit-item {
        padding: 0.8rem;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .benefit-text {
        font-size: 0.9rem;
    }
}
