/* ============================================
   ABACUS IMPERIALS - STANDALONE SECTION
   ============================================ */

.abacus-section {
    background: linear-gradient(135deg, #FFF9F5 0%, #FFFFFF 50%, #FFF9F5 100%);
    padding: 80px 0;
    position: relative;
}

.abacus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(224, 120, 86, 0.3) 50%, transparent 100%);
}

.abacus-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(224, 120, 86, 0.3) 50%, transparent 100%);
}

.abacus-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.abacus-section-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #E07856;
    margin-bottom: 16px;
    text-align: center;
}

.abacus-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2C4251;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.2;
}

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

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

.abacus-narrative p:last-of-type {
    margin-bottom: 0;
}

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

.abacus-narrative ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.abacus-narrative li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

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

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

.abacus-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(224, 120, 86, 0.15);
    border-color: rgba(224, 120, 86, 0.35);
}

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

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

.abacus-stat-sublabel {
    font-size: 14px;
    color: #8899A8;
    font-weight: 400;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .abacus-section {
        padding: 60px 0;
    }

    .abacus-content-wrapper {
        padding: 0 20px;
    }

    .abacus-section-title {
        font-size: 32px;
        margin-bottom: 36px;
    }

    .abacus-narrative {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 48px;
    }

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

    .abacus-narrative li {
        padding-left: 28px;
        margin-bottom: 14px;
    }

    .abacus-stats-bar {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 48px;
        padding-top: 48px;
    }

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

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

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

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

    .abacus-section-title {
        font-size: 36px;
    }

    .abacus-narrative {
        font-size: 17px;
    }

    .abacus-stats-bar {
        gap: 32px;
    }

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