/* 창업/설치안내 페이지 전용 스타일 */
body {
    margin: 0;
    padding: 0;
}

footer {
    margin-top: 0 !important;
}

.startup-page {
    min-height: 100vh;
    background: #ffffff;
}

/* 프로모션 섹션 */
.promo-section {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.promo-badge {
    display: inline-block;
    background: #00C853;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.promo-section h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.promo-section h2 span {
    color: #2B5CE6;
}

.promo-section .subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

/* 창업 비용 섹션 */
.cost-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.cost-image {
    text-align: center;
}

.cost-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 창업 절차 섹션 */
.process-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.process-header {
    text-align: center;
    margin-bottom: 40px;
}

.process-header h3 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-header p {
    font-size: 1.1rem;
    color: #666;
}

.process-image {
    text-align: center;
}

.process-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* 혜택 카드 섹션 - 인덱스와 동일한 스타일 */
.benefits-section {
    padding: 80px 0;
    background: white;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.feature-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    padding: 8px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 25px 20px;
    text-align: center;
}

.feature-content h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.feature-content .highlight {
    color: #2B5CE6;
    font-weight: 600;
}

/* 프로모션 반복 섹션 - 배경 제거 */
.promo-section-repeat {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.promo-section-repeat .promo-badge {
    display: inline-block;
    background: #00C853;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.promo-section-repeat h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.promo-section-repeat h2 span {
    color: #2B5CE6;
}

.promo-section-repeat .subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* CTA 섹션 */
.cta-section {
    padding: 100px 0 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff5f7 100%);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-phone {
    font-size: 3rem;
    color: #2B5CE6;
    font-weight: 800;
    margin-bottom: 3rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-phone:hover {
    transform: translateY(-3px);
    text-shadow: 0 5px 15px rgba(43, 92, 230, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: #2B5CE6;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(43, 92, 230, 0.3);
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(43, 92, 230, 0.4);
    background: #1a4bd8;
}

/* 반응형 디자인 */
@media (max-width: 991px) {
    /* 태블릿에서 2x2 그리드 */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .promo-section h2,
    .promo-section-repeat h2 {
        font-size: 2rem;
    }

    .cost-image img,
    .process-image img {
        border-radius: 10px;
    }

    /* 모바일에서 혜택 카드 세로 1열 정렬 */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-content h4 {
        font-size: 1.1rem;
    }

    .cta-phone {
        font-size: 2.2rem;
    }
}