.stage-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.stage-section-first {
    padding-top: 80px;
}

.stage-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.stage-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stage-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.stage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(2px);
    z-index: -1;
}

.stage-content {
    max-width: 900px;
    padding: 80px 40px;
    color: var(--text-white);
    text-align: left;
}

.page-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

.stage-date {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--silver);
    margin-bottom: 20px;
}

.stage-date svg {
    flex-shrink: 0;
}

.stage-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(192,192,192,0.3);
}

.stage-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    color: var(--silver);
    margin-bottom: 40px;
}

.stage-subtitle svg {
    flex-shrink: 0;
}

.stage-missions-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.stage-missions-title svg {
    color: var(--silver);
    flex-shrink: 0;
}

.stage-missions {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.stage-missions li {
    position: relative;
    padding: 15px 0 15px 35px;
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.7;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
}

.stage-missions li:last-child {
    border-bottom: none;
}

.stage-missions li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    width: 8px;
    height: 8px;
    background: var(--silver);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.stage-missions li strong {
    color: var(--text-white);
}

.stage-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.stage-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-title);
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: var(--silver);
    color: var(--bg-black);
}

.stage-btn:hover {
    box-shadow: 0 0 30px rgba(192,192,192,0.5);
    transform: translateY(-3px);
}

.stage-btn svg {
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.stage-btn:hover svg {
    transform: rotate(360deg);
}

.stage-btn-report {
    background: transparent;
    border: 2px solid var(--silver);
    color: var(--silver);
}

.stage-btn-report:hover {
    background: var(--silver);
    color: var(--bg-black);
}

.stage-separator {
    height: 100px;
    background: var(--bg-black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stage-separator::before {
    content: '';
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--silver), transparent);
}

.footer-portfolio {
    background: var(--bg-black);
    padding: 80px 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.footer-col {
    text-align: center;
}

.footer-logo {
    width: 170px;
    filter: drop-shadow(0 0 10px rgba(192, 192, 192, 0.4));
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.07);
    filter: drop-shadow(0 0 20px rgba(192, 192, 192, 0.6));
}

.footer-heading {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--silver);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-gray);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-links .active {
    color: var(--silver);
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.4);
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.footer-legal a {
    font-size: 0.95rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--silver);
}

@media (max-width: 768px) {
    .stage-section-first {
        padding-top: 60px;
    }

    .stage-content {
        padding: 60px 20px;
    }

    .page-title {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .stage-title {
        font-size: 1.8rem;
    }

    .stage-subtitle {
        font-size: 1.1rem;
    }

    .stage-missions li {
        font-size: 1.05rem;
        padding: 12px 0 12px 30px;
    }

    .stage-buttons {
        flex-direction: column;
    }

    .stage-btn {
        width: 100%;
        justify-content: center;
    }

    .stage-separator {
        height: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}