/* Stages Styling */

.stages-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stage-card {
    background: white;
    border: 2px solid #dc143c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.1);
    transition: all 0.3s ease;
}

.stage-card:hover {
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.2);
    transform: translateY(-5px);
}

.stage-header {
    background: linear-gradient(135deg, #dc143c 0%, #d61043 100%);
    color: white;
    padding: 20px 20px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    line-height: 1.3;
}

.stage-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.stage-section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.stage-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.stage-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #dc143c;
    margin: 0 0 10px 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stage-section-content {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

.stage-warning {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 6px;
    color: #856404;
    font-weight: 600;
    border-bottom: none;
}

.stage-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.stage-price {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    gap: 8px;
}

.price-label {
    color: #dc143c;
    font-weight: 700;
}

.price-value {
    color: #333;
}

.btn-signup {
    display: inline-block;
    padding: 8px 16px;
    background-color: #dc143c;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.btn-signup:hover {
    background-color: #b91030;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .stages-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .stages-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stage-header {
        padding: 15px;
        min-height: 70px;
    }

    .stage-title {
        font-size: 16px;
    }

    .stage-content {
        padding: 15px;
    }

    .stage-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .btn-signup {
        width: 100%;
        text-align: center;
    }
}
