/* ==========================================================
   Block: Intro Section — frontend styles
   ========================================================== */

.intro-section {
    background: var(--white);
    padding: 80px 0;
}

.intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text .section-title {
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.counter-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--red), #ff5252);
    color: #fff;
    padding: 13px 26px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    margin-top: 4px;
    box-shadow: 0 6px 20px rgba(224, 43, 43, 0.35);
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.intro-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg);
    border-radius: 14px;
    border-left: 4px solid var(--blue);
    transition: all 0.25s;
}

.intro-highlight.red {
    border-left-color: var(--red);
}

.intro-highlight i {
    color: var(--blue);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.intro-highlight.red i {
    color: var(--red);
}

.intro-highlight-text strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3px;
}

.intro-highlight-text span {
    font-size: 13px;
    color: var(--muted);
}

@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .intro-section { padding: 48px 0; }
    .intro-section .container { padding: 0 16px; }
}

/* ==========================================================
   Intro Section — режим "abacus card" (правая колонка)
   ========================================================== */

/* Лид-цитата */
.intro-lead {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
    padding: 18px 22px;
    background: var(--blue-light);
    border-left: 5px solid var(--blue);
    border-radius: 0 14px 14px 0;
    font-weight: 600;
}

/* Список методов */
.methods-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.methods-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 17px;
    background: var(--bg);
    border-radius: 14px;
    border: 2px solid transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.55;
    transition: all 0.25s;
}

.methods-list li:hover { border-color: var(--blue-light); background: #fff; }
.methods-list li i { color: var(--blue); font-size: 16px; margin-top: 2px; flex-shrink: 0; width: 20px; }

/* Синяя карточка */
.abacus-card {
    background: linear-gradient(135deg, var(--blue), #2b6ee0);
    border-radius: 28px;
    padding: 44px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.abacus-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.abacus-card::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 150px; height: 150px; border-radius: 50%;
    background: rgba(255, 82, 82, 0.12);
}

.abacus-emoji {
    font-size: 72px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.abacus-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.abacus-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.abacus-big-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin: 18px 0 4px;
    position: relative;
    z-index: 1;
}

.abacus-big-num span {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.65);
}

.abacus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.abacus-tag {
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}
