/**
 * Benefits — dense editorial grid (aligned with of26 / faq26)
 */
.benefits-section.benefits--2026 {
    --bf26-accent: #8fbf5a;
    --bf26-ink: #f4f2ec;
    --bf26-mute: rgba(244, 242, 236, 0.78);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: 0;
    padding: clamp(2.75rem, 5.5vw, 4.5rem) 0;
    border-top: none;
    background: var(--bg-dark, #0a0a0f);
}

.benefits-section.benefits--2026 .bf26__glow {
    position: absolute;
    inset: -8% -4% -12%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 48% 42% at 8% 18%, rgba(107, 184, 50, 0.12), transparent 58%),
        radial-gradient(ellipse 40% 48% at 92% 72%, rgba(143, 191, 90, 0.08), transparent 55%);
}

.benefits-section.benefits--2026 > .container.bf26__shell,
.benefits-section.benefits--2026 .bf26__shell {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    width: min(1240px, calc(100% - 3rem));
    margin-left: auto;
    margin-right: auto;
    padding: clamp(1.35rem, 2.8vw, 2rem) clamp(1.15rem, 2.5vw, 1.85rem);
    border-radius: 22px;
    border: 1px solid rgba(143, 191, 90, 0.32);
    background:
        linear-gradient(165deg, rgba(107, 184, 50, 0.07) 0%, transparent 40%),
        rgba(255, 255, 255, 0.025);
    box-shadow:
        inset 0 1px 0 rgba(143, 191, 90, 0.18),
        0 22px 56px rgba(0, 0, 0, 0.3);
}

.benefits-section.benefits--2026 .bf26__shell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.2rem;
    right: 1.2rem;
    height: 2px;
    border-radius: 0 0 2px 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(143, 191, 90, 0.85) 22%,
        rgba(167, 220, 110, 0.95) 50%,
        rgba(143, 191, 90, 0.85) 78%,
        transparent
    );
    pointer-events: none;
}

.bf26__head {
    max-width: 40rem;
    margin: 0 0 1.5rem;
    opacity: 0;
    transform: translateY(1.1rem);
}

.bf26__head.is-visible {
    animation: bf26Rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bf26__eyebrow {
    margin: 0 0 0.65rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bf26-accent);
}

.bf26__eyebrow::before {
    content: "";
    width: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, #6bb832, transparent);
}

.bf26__title {
    margin: 0 0 0.65rem;
    font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(1.7rem, 3.4vw, 2.45rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--bf26-ink);
}

.bf26__title span {
    color: var(--bf26-accent);
}

.bf26__lead {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--bf26-mute);
}

.bf26__bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}

@media (min-width: 640px) {
    .bf26__bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
    }
}

@media (min-width: 969px) {
    .bf26__bento {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.85rem;
    }
}

.bf26__tile {
    --i: 0;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem 1rem;
    align-items: start;
    padding: 1rem 1.05rem 1.05rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(143, 191, 90, 0.2);
    min-height: 0;
    opacity: 0;
    transform: translateY(1rem);
    transition:
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.bf26__tile.is-visible {
    animation: bf26CardIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--i) * 70ms);
}

.bf26__tile:hover {
    border-color: rgba(143, 191, 90, 0.45);
    background: rgba(107, 184, 50, 0.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.bf26__tile--accent {
    background:
        linear-gradient(165deg, rgba(107, 184, 50, 0.12) 0%, transparent 55%),
        rgba(255, 255, 255, 0.03);
    border-color: rgba(143, 191, 90, 0.38);
}

.bf26__icon {
    display: grid;
    place-items: center;
    width: 2.55rem;
    height: 2.55rem;
    flex-shrink: 0;
    border-radius: 11px;
    color: #9AE85A;
    background: rgba(107, 184, 50, 0.1);
    border: 1px solid rgba(143, 191, 90, 0.4);
}

.bf26__icon svg {
    width: 1.2rem;
    height: 1.2rem;
}

.bf26__copy {
    display: grid;
    gap: 0.28rem;
    min-width: 0;
}

.bf26__idx {
    margin: 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--bf26-accent);
    opacity: 0.85;
}

.bf26__name {
    margin: 0;
    font-family: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--bf26-ink);
    line-height: 1.25;
}

.bf26__desc {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--bf26-mute);
}

.bf26__pill {
    display: inline-flex;
    align-items: center;
    align-self: start;
    margin-top: 0.35rem;
    width: fit-content;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0a0a0f;
    background: #9AE85A;
}

.bf26__cta {
    margin-top: 1.35rem;
    opacity: 0;
    transform: translateY(0.75rem);
}

.bf26__cta.is-visible {
    animation: bf26Rise 0.6s 0.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes bf26Rise {
    to { opacity: 1; transform: none; }
}

@keyframes bf26CardIn {
    to { opacity: 1; transform: none; }
}

@media (max-width: 560px) {
    .benefits-section.benefits--2026 .bf26__shell {
        width: min(100%, calc(100% - 1.5rem));
        padding: 1.15rem 1rem 1.25rem;
        border-radius: 18px;
    }

    .bf26__tile {
        padding: 0.9rem 0.95rem;
        gap: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bf26__head,
    .bf26__tile,
    .bf26__cta {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .bf26__tile:hover {
        transform: none;
    }
}
