/* Section 3: Project Value & Business Potential Styles */
.value-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8d5f0 0%, #d4c5e0 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.value-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

/* Section Header */
.value-section .section-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.value-section .section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2d1b69;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.value-section .section-header .subtitle {
    font-size: 1rem;
    color: #5a4a7a;
    font-weight: 500;
}

/* Pricing Tiers */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 0;
}

.pricing-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.basic {
    border-color: rgba(76, 175, 80, 0.2);
}

.pricing-card.mid {
    border-color: rgba(33, 150, 243, 0.2);
}

.pricing-card.premium {
    border-color: rgba(156, 39, 176, 0.2);
}

.pricing-card.featured {
    border-color: #2196f3;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.2);
}

.pricing-card.featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 28px rgba(33, 150, 243, 0.25);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #2d1b69;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* Card Icon */
.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
}

.pricing-card.basic .card-icon {
    color: #4caf50;
}

.pricing-card.mid .card-icon {
    color: #2196f3;
}

.pricing-card.premium .card-icon {
    color: #9c27b0;
}

.card-icon svg {
    width: 40px;
    height: 40px;
}

.pricing-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2d1b69;
    margin-bottom: 0.8rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1;
}

.pricing-card.basic .price {
    color: #4caf50;
}

.pricing-card.mid .price {
    color: #2196f3;
}

.pricing-card.premium .price {
    color: #9c27b0;
}

/* Features List */
.features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #424242;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.4;
}

.features li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 50%;
    font-weight: bold;
    color: #4caf50;
    flex-shrink: 0;
    font-size: 0.75rem;
    margin-top: 2px;
}

/* Income Potential */
.income-potential {
    background: linear-gradient(135deg, #6a3fb5 0%, #5a2d9e 100%);
    padding: 1.8rem 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(106, 63, 181, 0.3);
}

.potential-content {
    text-align: center;
    color: #fff;
}

.potential-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.stat-arrow {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffd700;
}

.growth-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 900px) {
    .value-section {
        height: auto;
        min-height: 100vh;
        padding: 50px 20px;
    }

    .value-container {
        gap: 2rem;
    }

    .value-section .section-header h2 {
        font-size: 1.8rem;
    }

    .value-section .section-header .subtitle {
        font-size: 1rem;
    }

    .pricing-tiers {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .price {
        font-size: 1.8rem;
    }

    .potential-stat {
        flex-direction: column;
        gap: 0.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }

    .stat-arrow {
        transform: rotate(90deg);
        font-size: 1.3rem;
    }

    .stat-value {
        font-size: 1.3rem;
    }

    .growth-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .value-section {
        padding: 40px 20px;
    }

    .value-container {
        max-width: 320px;
        margin: 0 auto;
    }

    .value-section .section-header h2 {
        font-size: 1.5rem;
    }

    .value-section .section-header .subtitle {
        font-size: 0.9rem;
    }

    .pricing-tiers {
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem 1.2rem;
        width: 320px;
        max-width: 320px;
    }

    .popular-badge {
        font-size: 0.65rem;
        padding: 0.35rem 1rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon svg {
        width: 32px;
        height: 32px;
    }

    .pricing-card h3 {
        font-size: 1.05rem;
    }

    .price {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .features li {
        font-size: 0.85rem;
        padding: 0.45rem 0;
    }

    .features li::before {
        width: 16px;
        height: 16px;
        font-size: 0.7rem;
    }

    .income-potential {
        padding: 1.5rem 1.2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-arrow {
        font-size: 1.2rem;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .growth-text {
        font-size: 0.85rem;
    }
}
