/* Shared Styles */
.section-padding {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* Story Section */
.split-story-section {
    background: #fff;
    overflow: hidden;
}

.story-card-dark {
    background: #0f172a;
    color: #fff;
    padding: 60px;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.15);
}

.mcs-badge {
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    padding: 5px 15px;
    border-radius: 8px;
    font-weight: 900;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .story-card-dark {
        padding: 30px;
        border-radius: 20px;
    }
}

/* Lab Section */
.lab-section {
    background: #f8fafc;
}

.lab-item {
    background: #fff;
    border: #ff6b00 solid 1px;
    border-color: #ff6b00;
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.05);
    padding: 40px;
    border-radius: 30px;
    transition: 0.3s;
    height: 100%;
}

.lab-item:hover {
    border-color: #ff6b00;
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.05);
}

.lab-icon {
    font-size: 2.5rem;
    color: #ff6b00;
    margin-bottom: 25px;
    display: block;
}

/* Vision Section */
.vision-section {
    background: #ffffff;
    position: relative;
}

.vision-box {
    border-left: 5px solid #ff6b00;
    padding-left: 30px;
    margin-bottom: 40px;
}

.vision-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.05);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
}

/* Stats Section */
.stats-section {
    background: #0f172a;
    padding: 60px 0;
    border-radius: 50px;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b00;
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 11px;
    margin: 0;
}

@media (max-width: 768px) {
    .stats-section {
        border-radius: 20px;
        margin: 0 10px;
    }

    .stat-item h2 {
        font-size: 2.2rem;
    }
}