/* ============================================
   ABACUS IMPERIALS - HOW IT WAS BUILT INTRO
   ============================================ */

.abacus-intro-section {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
    border: 2px solid #FFE5D9;
    border-radius: 16px;
    padding: 48px 40px;
    margin-bottom: 64px;
    position: relative;
    overflow: hidden;
}

.abacus-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E07856 0%, #D4693F 100%);
}

.abacus-intro-header {
    margin-bottom: 32px;
}

.abacus-intro-label {
    display: inline-block;
    background: rgba(224, 120, 86, 0.1);
    color: #E07856;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.abacus-intro-title {
    font-size: 32px;
    font-weight: 700;
    color: #2C4251;
    margin: 0;
    line-height: 1.3;
}

.abacus-intro-narrative {
    font-size: 17px;
    line-height: 1.8;
    color: #4A5C6A;
    margin-bottom: 40px;
}

.abacus-intro-narrative p {
    margin-bottom: 24px;
}

.abacus-intro-narrative p:last-child {
    margin-bottom: 0;
}

.abacus-intro-narrative strong {
    color: #2C4251;
    font-weight: 600;
}

/* Stats Bar */
.abacus-intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid rgba(224, 120, 86, 0.15);
}

.abacus-stat-item {
    text-align: center;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid rgba(224, 120, 86, 0.12);
    transition: all 0.3s ease;
}

.abacus-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(224, 120, 86, 0.15);
    border-color: rgba(224, 120, 86, 0.3);
}

.abacus-stat-value {
    font-size: 42px;
    font-weight: 700;
    color: #E07856;
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.abacus-stat-label {
    font-size: 15px;
    color: #5A6C7A;
    font-weight: 500;
    line-height: 1.5;
}

.abacus-stat-sublabel {
    font-size: 13px;
    color: #8899A8;
    margin-top: 4px;
    font-weight: 400;
}

/* Bullet points styling within narrative */
.abacus-intro-narrative ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.abacus-intro-narrative li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.abacus-intro-narrative li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #E07856;
    font-weight: 700;
    font-size: 16px;
}

/* Emphasis text */
.abacus-intro-emphasis {
    background: rgba(224, 120, 86, 0.08);
    border-left: 4px solid #E07856;
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
    font-size: 16px;
    font-weight: 500;
    color: #2C4251;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .abacus-intro-section {
        padding: 32px 24px;
        margin-bottom: 48px;
    }

    .abacus-intro-title {
        font-size: 26px;
    }

    .abacus-intro-narrative {
        font-size: 16px;
        line-height: 1.7;
    }

    .abacus-intro-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
        padding-top: 32px;
    }

    .abacus-stat-item {
        padding: 20px;
    }

    .abacus-stat-value {
        font-size: 36px;
    }

    .abacus-stat-label {
        font-size: 14px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .abacus-intro-section {
        padding: 40px 32px;
    }

    .abacus-intro-title {
        font-size: 28px;
    }

    .abacus-intro-stats {
        gap: 24px;
    }
}
