/* ============================================
   GROWTH EVOLUTION - PHASE INSIGHTS
   ============================================ */

/* What This Phase Gave Me - Insight Paragraph */
.stage-insight {
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    border-left: 4px solid #6B8E4E;
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #4A5C6A;
    font-style: italic;
}

.stage-insight-title {
    font-size: 14px;
    font-weight: 700;
    color: #6B8E4E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: block;
    font-style: normal;
}

/* Transition Line */
.stage-transition {
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(107, 142, 78, 0.08);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stage-transition::before {
    content: '→';
    font-size: 20px;
    font-weight: 700;
    color: #6B8E4E;
    flex-shrink: 0;
}

.stage-transition-text {
    font-size: 14px;
    line-height: 1.6;
    color: #2C4251;
    font-weight: 500;
    margin: 0;
}

.stage-transition-label {
    font-weight: 700;
    color: #6B8E4E;
}

/* Different colors for each phase */
.evolution-stage:nth-child(1) .stage-insight {
    border-left-color: #E07856;
}

.evolution-stage:nth-child(1) .stage-insight-title {
    color: #E07856;
}

.evolution-stage:nth-child(1) .stage-transition {
    background: rgba(224, 120, 86, 0.08);
}

.evolution-stage:nth-child(1) .stage-transition::before {
    color: #E07856;
}

.evolution-stage:nth-child(1) .stage-transition-label {
    color: #E07856;
}

.evolution-stage:nth-child(3) .stage-insight {
    border-left-color: #3B82F6;
}

.evolution-stage:nth-child(3) .stage-insight-title {
    color: #3B82F6;
}

.evolution-stage:nth-child(3) .stage-transition {
    background: rgba(59, 130, 246, 0.08);
}

.evolution-stage:nth-child(3) .stage-transition::before {
    color: #3B82F6;
}

.evolution-stage:nth-child(3) .stage-transition-label {
    color: #3B82F6;
}

.evolution-stage:nth-child(5) .stage-insight {
    border-left-color: #8B5CF6;
}

.evolution-stage:nth-child(5) .stage-insight-title {
    color: #8B5CF6;
}

/* Phase 3 has no transition (it's the current phase) */
.evolution-stage.current .stage-transition {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .stage-insight {
        padding: 16px 20px;
        font-size: 14px;
        margin-top: 20px;
    }

    .stage-insight-title {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .stage-transition {
        padding: 14px 16px;
        margin-top: 20px;
        gap: 10px;
    }

    .stage-transition::before {
        font-size: 18px;
    }

    .stage-transition-text {
        font-size: 13px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .stage-insight {
        padding: 18px 22px;
    }

    .stage-transition {
        padding: 15px 18px;
    }
}
