/* 스토어 트래픽 페이지 전용 스타일 */

/* 히어로 섹션 */
.store-hero {
    background: linear-gradient(135deg, #5B3FF9 0%, #7C5EFC 100%);
    padding: 120px 0 80px;
    margin-top: 56px;
    position: relative;
    overflow: hidden;
}

.store-hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.store-hero .container {
    position: relative;
    z-index: 1;
}

.store-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.store-hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.store-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.store-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

/* 스토어 특징 카드 */
.store-feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.store-feature-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(91, 63, 249, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.store-feature-card:hover::before {
    top: -50%;
    left: -50%;
}

.store-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(91, 63, 249, 0.15);
}

.store-feature-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5B3FF9, #7C5EFC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.store-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.store-feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* 플랫폼 섹션 */
.platform-section {
    background: #F8F9FA;
    padding: 80px 0;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.platform-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.platform-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.platform-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.platform-item p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* 서비스 프로세스 */
.service-process {
    padding: 80px 0;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #5B3FF9, #7C5EFC);
    transform: translateX(-50%);
}

.process-item {
    position: relative;
    padding: 30px 0;
}

.process-item .process-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 5px solid #5B3FF9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: #5B3FF9;
    z-index: 1;
}

.process-item .process-content {
    width: 45%;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.process-item:nth-child(odd) .process-content {
    margin-left: auto;
}

.process-item:nth-child(even) .process-content {
    margin-right: auto;
}

.process-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.process-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* 성과 쇼케이스 */
.showcase-section {
    background: #F8F9FA;
    padding: 80px 0;
}

.showcase-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.showcase-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.showcase-card .showcase-image {
    height: 250px;
    background: linear-gradient(135deg, #5B3FF9, #7C5EFC);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.showcase-card .showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-card .showcase-content {
    padding: 30px;
}

.showcase-card .showcase-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.showcase-card .showcase-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.showcase-stat {
    text-align: center;
    padding: 15px;
    background: #F8F9FA;
    border-radius: 10px;
}

.showcase-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5B3FF9;
}

.showcase-stat .stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 5px;
}

/* 가격 테이블 */
.store-pricing {
    padding: 80px 0;
}

.store-pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.store-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.store-pricing-card.popular {
    border: 3px solid #5B3FF9;
}

.store-pricing-card.popular .ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #FF0848;
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.store-pricing-card .pricing-header {
    background: linear-gradient(135deg, #5B3FF9, #7C5EFC);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.store-pricing-card .pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.store-pricing-card .pricing-header .price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.store-pricing-card .pricing-header .price small {
    font-size: 1rem;
    font-weight: 400;
}

.store-pricing-card .pricing-header .desc {
    font-size: 0.95rem;
    opacity: 0.9;
}

.store-pricing-card .pricing-body {
    padding: 30px;
}

.store-pricing-card .pricing-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.store-pricing-card .pricing-body ul li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-pricing-card .pricing-body ul li:last-child {
    border-bottom: none;
}

.store-pricing-card .pricing-body ul li i {
    color: #5B3FF9;
    font-size: 1.2rem;
}

/* FAQ 섹션 */
.store-faq {
    background: #F8F9FA;
    padding: 80px 0;
}

.store-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.store-accordion .accordion-button {
    background: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 25px;
    border: none;
}

.store-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #5B3FF9, #7C5EFC);
    color: white;
}

.store-accordion .accordion-button:focus {
    box-shadow: none;
}

.store-accordion .accordion-body {
    padding: 25px;
    line-height: 1.8;
    color: var(--gray);
    background: white;
}

/* CTA 섹션 */
.store-cta {
    background: linear-gradient(135deg, #5B3FF9, #7C5EFC);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.store-cta::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 20s infinite linear;
}

/* 플로팅 버튼 */
.store-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.store-float-btn {
    background: linear-gradient(135deg, #5B3FF9, #7C5EFC);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(91, 63, 249, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.store-float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(91, 63, 249, 0.4);
}

/* 반응형 디자인 */
@media (max-width: 991px) {
    .process-timeline::before {
        left: 30px;
    }

    .process-item .process-badge {
        left: 30px;
    }

    .process-item .process-content {
        width: calc(100% - 100px);
        margin-left: 80px !important;
    }
}

@media (max-width: 768px) {
    .store-hero h1 {
        font-size: 2rem;
    }

    .store-hero .lead {
        font-size: 1.1rem;
    }

    .store-badges {
        justify-content: center;
    }

    .platform-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .showcase-card .showcase-stats {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-item .process-badge {
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .process-item .process-content {
        width: calc(100% - 80px);
        margin-left: 70px !important;
    }
}