.aivah-mc-container {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.aivah-mc-layout {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    box-sizing: border-box;
    padding: 80px 30px;
}

/* Top Content */
.aivah-mc-top {
    width: 100%;
    max-width: 800px;
    text-align: left;
}

.aivah-mc-eyebrow {
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #E85B24;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.aivah-mc-heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 25px 0;
}

.aivah-mc-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #a8a8a9;
    margin: 0;
}

.aivah-mc-desc p {
    margin: 0 0 15px 0;
}
.aivah-mc-desc p:last-child {
    margin-bottom: 0;
}

/* Divider Line & Glow */
.aivah-mc-divider-wrapper {
    width: 100%;
    margin-top: 45px;
    margin-bottom: 45px;
    box-sizing: border-box;
}

.aivah-mc-divider {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    overflow: visible;
}

.aivah-mc-divider-glow {
    position: absolute;
    top: -1px;
    left: 0;
    width: 0%; /* Animate width from 0 to 100% via GSAP */
    height: 3px;
    background: linear-gradient(to right, rgba(232, 91, 36, 0) 0%, #E85B24 50%, rgba(232, 91, 36, 0) 100%);
    filter: blur(1px);
}

/* Milestones Grid */
.aivah-mc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

.aivah-mc-card {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    text-align: left;
}

.aivah-mc-card:last-child {
    border-right: none !important;
}

.aivah-mc-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.aivah-mc-card-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.aivah-mc-card-icon i {
    font-size: 32px;
    color: #E85B24;
}

.aivah-mc-card-icon svg {
    width: 32px;
    height: 32px;
    fill: #E85B24;
}

.aivah-mc-card-number-wrapper {
    display: flex;
    align-items: baseline;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: inherit;
}

.aivah-mc-card-number {
    font-family: inherit;
}

.aivah-mc-card-prefix,
.aivah-mc-card-suffix {
    font-size: 28px;
    font-weight: 700;
    color: #E85B24;
}

.aivah-mc-card-label {
    font-size: 14px;
    line-height: 1.5;
    color: #a8a8a9;
}

/* Mobile & Tablet Overrides */
@media (max-width: 1024px) {
    .aivah-mc-layout {
        height: auto;
        padding: 60px 30px;
    }

    .aivah-mc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .aivah-mc-card {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .aivah-mc-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .aivah-mc-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}
