.about-advantages {
    position: relative;
    z-index: 1;
    padding: 96px 0 88px;
    overflow: hidden;
}

.about-advantages .container {
    max-width: 1280px;
}

.about-advantages__h2 {
    margin: 0;
    font-size: 54px;
    line-height: 1;
    font-weight: 700;
    color: var(--ih-ink, #18140E);
    letter-spacing: 0.16em;
}

.about-advantages__lead {
    margin: 22px 0 0;
    font-size: 24px;
    line-height: 1.32;
    font-weight: 500;
    color: #3a342b;
    max-width: 780px;
}

/* stats */
.about-advantages__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-bottom: 8px;
}

.about-advantages__stat-figure {
    display: flex;
    align-items: baseline;
    line-height: 1;
    white-space: nowrap;
}

.about-advantages__stat-prefix {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    color: var(--ih-ink, #18140E);
}

.about-advantages__stat-num {
    font-size: 58px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

/* Диапазон (напр. 40–60): обе цифры одного кегля в stat-num.
   Чуть меньше одиночного числа, чтобы не вылезать на узких экранах. */
.about-advantages__stat-num--range {
    font-size: 50px;
    letter-spacing: -0.02em;
}

.about-advantages__stat-suffix {
    font-size: 34px;
    font-weight: 700;
}

.about-advantages__stat.is-accent .about-advantages__stat-num,
.about-advantages__stat.is-accent .about-advantages__stat-suffix {
    color: var(--ih-accent, #eb9315);
}

.about-advantages__stat.is-ink .about-advantages__stat-num,
.about-advantages__stat.is-ink .about-advantages__stat-suffix {
    color: var(--ih-ink, #18140E);
}

.about-advantages__stat-label {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ih-text-muted, #706A60);
}

/* advantages grid */
.about-advantages__grid {
    margin-top: 64px;
}

.adv-card {
    height: 100%;
    padding: 40px 32px 38px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 14px 40px -34px rgba(24, 20, 8, 0.3);
    transition: transform 0.5s cubic-bezier(.16, .84, .36, 1),
                box-shadow 0.5s ease,
                border-color 0.5s ease;
    will-change: transform;
}

.adv-card:hover {
    transform: translateY(-6px);
    border-color: rgba(235, 147, 21, 0.45);
    box-shadow: 0 0 0 1px rgba(235, 147, 21, 0.25),
                0 26px 60px -34px rgba(235, 147, 21, 0.45),
                0 14px 40px -34px rgba(24, 20, 8, 0.3);
}

.adv-card__icon {
    line-height: 0;
}

.adv-card__icon svg {
    width: 30px;
    height: 30px;
    stroke: #c9852a;
    transition: transform 0.5s cubic-bezier(.16, .84, .36, 1), stroke 0.5s ease;
}

.adv-card:hover .adv-card__icon svg {
    transform: scale(1.12) rotate(-3deg);
    stroke: var(--ih-primary, #eb9315);
}

.adv-card__title {
    margin: 28px 0 0;
    font-size: 19px;
    font-weight: 600;
    color: var(--ih-ink, #18140E);
    letter-spacing: -0.005em;
}

.adv-card__text {
    margin: 13px 0 0;
    font-size: 14px;
    line-height: 1.65;
    color: #736d62;
}

/* reveal — hidden state is applied inline by JS (never here), so content is
   never blank if the script is deferred by LiteSpeed. CSS only carries the
   transition + the revealed target. */
.about-advantages [data-reveal] {
    transition: opacity 0.9s cubic-bezier(.16, .84, .36, 1), transform 0.9s cubic-bezier(.16, .84, .36, 1);
}

.about-advantages [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .about-advantages {
        padding: 64px 0 56px;
    }

    .about-advantages__h2 {
        font-size: 38px;
    }

    .about-advantages__lead {
        font-size: 19px;
    }

    .about-advantages__stats {
        gap: 32px;
    }

    .about-advantages__stat-num {
        font-size: 46px;
    }

    .about-advantages__stat-num--range {
        font-size: 40px;
    }
}

/* reduced-motion suppression removed: animations must always play (owner requirement) */
