/* ── Advantages section ───────────────────────────────── */
.advantages {
    background: linear-gradient(135deg, #16191c 0%, #1e2124 55%, #1c1a00 100%);
    border-radius: 20px;
    margin: 2.5rem auto;
    padding: 3rem 2rem 2.5rem;
    max-width: 1580px;
    border: 1px solid rgba(255,204,0,.12);
    position: relative;
    overflow: hidden;
}

/* Subtle decorative glow */
.advantages::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(255,204,0,.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Heading block */
.advantages-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.advantages-heading h2 {
    font-size: 2.1rem;
    color: #fff;
    font-weight: 900;
    margin: 0 0 .55rem;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
}

.advantages-heading h2::before,
.advantages-heading h2::after {
    content: '';
    display: inline-block;
    width: 36px;
    height: 3px;
    background: var(--pub-cta, #ffcc00);
    border-radius: 2px;
}

.advantages-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* ── Stats bar ──────────────────────────────────────────── */
.adv-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,204,0,.05);
    border: 1px solid rgba(255,204,0,.15);
    border-radius: 16px;
    padding: 1.6rem 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.adv-stat {
    flex: 1;
    min-width: 130px;
    text-align: center;
    padding: .5rem 1rem;
}

.adv-stat-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--pub-cta, #ffcc00);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.02em;
}

.adv-stat-label {
    margin-top: .4rem;
    font-size: .8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}

.adv-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,204,0,.15);
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .adv-stats { gap: .5rem; padding: 1.2rem .75rem; }
    .adv-stat-divider { display: none; }
    .adv-stat { min-width: 110px; flex: 0 0 calc(50% - 1rem); }
    .adv-stat-num { font-size: 1.9rem; }
}

/* Cards grid */
.advantages-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1100px;
}

/* Single card */
.advantages-list li {
    background: rgba(255,255,255,.03);
    border: 1.5px solid rgba(255,204,0,.1);
    border-radius: 16px;
    padding: 1.6rem 1.4rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    transition: transform .22s, box-shadow .22s, border-color .22s, background .22s;
}

.advantages-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(255,204,0,.12);
    border-color: rgba(255,204,0,.45);
    background: rgba(255,204,0,.04);
}

/* Icon */
.adv-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255,204,0,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--pub-cta, #ffcc00);
    flex-shrink: 0;
    transition: background .22s, transform .22s;
}

.advantages-list li:hover .adv-icon {
    background: rgba(255,204,0,.2);
    transform: scale(1.08);
}

/* Text block */
.adv-body {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.adv-body strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
}

.adv-body span {
    color: #64748b;
    font-size: .84rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .advantages { padding: 2rem .75rem; margin: 1.5rem auto; }
    .advantages-list { grid-template-columns: 1fr 1fr; gap: .85rem; max-width: 100%; }
    .advantages-heading h2 { font-size: 1.6rem; }
}

@media (max-width: 550px) {
    .advantages-list { grid-template-columns: 1fr; }
    .advantages-heading h2 { font-size: 1.4rem; }
    .advantages-heading h2::before,
    .advantages-heading h2::after { width: 22px; }
}
