/* ========================================================
   ABOUT PAGE ENTERPRISE STYLES
   ========================================================
   Overrides and specific structures for the About timeline.
*/

.about-page {
    background: linear-gradient(135deg, #070313 0%, #0a0a1a 50%, #0d0a19 100%);
    color: #ffffff;
    font-family: 'Inter', 'Poppins', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.hero-section {
    padding-top: 160px;
    /* Push hero content below fixed navigation bar */
}

.hero-video-wrapper {
    max-width: 1000px;
    margin: 60px auto 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(106, 0, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-image-board {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

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

.timeline-section {
    padding: 100px 20px;
    position: relative;
    z-index: 10;
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.timeline-item {
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid rgba(106, 0, 255, 0.3);
    border-radius: 16px;
    padding: 40px 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .timeline-grid {
        grid-template-columns: 1fr;
    }
}

.timeline-year {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: transparent;
    -webkit-text-stroke: 1px #6A00FF;
    margin-bottom: 20px;
    margin-top: 0;
}

.timeline-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    margin-top: 0;
}

.timeline-item p {
    color: #A0AEC0;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Override differentiation grid limits */
.diff-grid.count-3 {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================================
   PREMIUM GLASS & DATA VISUALIZATION
   ======================================================== */
.glass-panel {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
    z-index: 0;
    pointer-events: none;
}

.glass-panel:hover::before {
    left: 150%;
}

.stats-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.stat {
    padding: 40px 20px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    background: rgba(10, 10, 18, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 240, 255, 0.1);
}

.stat span.counter {
    display: block;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

@media (max-width: 992px) {
    .stats-grid.portfolio-kpis {
        grid-template-columns: 1fr;
    }
}