/**
 * Homepage — Despre Noi section (2026 editorial)
 */
.home-about.home-about--2026 {
    padding: clamp(3.5rem, 8vw, 5.75rem) 0;
    background:
        radial-gradient(ellipse 48% 55% at 92% 12%, rgba(107, 184, 50, 0.07), transparent 55%),
        radial-gradient(ellipse 40% 45% at 8% 88%, rgba(143, 191, 90, 0.05), transparent 50%),
        var(--bg-dark, #0a0a0f);
    position: relative;
    overflow: hidden;
}

.home-about--2026 > .container {
    width: min(1240px, calc(100% - 3rem));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    z-index: 1;
}

.ha26__grid {
    display: grid;
    gap: clamp(1.5rem, 3.5vw, 2.75rem);
    align-items: stretch;
}

@media (min-width: 960px) {
    .ha26__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        gap: clamp(2.25rem, 4.5vw, 3.5rem);
    }
}

.ha26__visual {
    opacity: 0;
    transform: translateY(22px);
}

.ha26__visual.is-visible {
    animation: ha26Rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ha26__visual-frame {
    height: 100%;
    min-height: 280px;
    border-radius: 18px;
    border: 1px solid rgba(143, 191, 90, 0.28);
    overflow: hidden;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.ha26__visual-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.48);
}

.ha26__visual-frame .ab26-anim {
    border-radius: 0;
    min-height: 100%;
    height: 100%;
}

.ha26__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ha26__head {
    opacity: 0;
    transform: translateY(22px);
}

.ha26__head.is-visible {
    animation: ha26Rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ha26__eyebrow {
    margin: 0 0 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8fbf5a;
}

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

.ha26__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--text-light, #F5F1E6);
}

.ha26__title em {
    font-style: normal;
    color: #8fbf5a;
}

.ha26__lead {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(245, 241, 230, 0.72);
}

.ha26__lead:last-child {
    margin-bottom: 0;
}

.ha26__values {
    opacity: 0;
    transform: translateY(22px);
}

.ha26__values.is-visible {
    animation: ha26Rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.ha26__values-title {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 241, 230, 0.5);
}

.ha26__values-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

@media (max-width: 560px) {
    .home-about--2026 > .container {
        width: min(100%, calc(100% - 1.5rem));
    }

    .ha26__values-grid {
        grid-template-columns: 1fr;
    }
}

.ha26__value {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    border: 1px solid rgba(245, 241, 230, 0.08);
    background: rgba(255, 255, 255, 0.025);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.ha26__value:hover {
    border-color: rgba(143, 191, 90, 0.32);
    background: rgba(107, 184, 50, 0.07);
    transform: translateY(-2px);
}

.ha26__value-icon {
    flex-shrink: 0;
    width: 1.65rem;
    height: 1.65rem;
    display: grid;
    place-items: center;
    border-radius: 8px;
    border: 1px solid rgba(143, 191, 90, 0.35);
    background: rgba(107, 184, 50, 0.12);
    color: #8fbf5a;
}

.ha26__value-icon svg {
    width: 14px;
    height: 14px;
}

.ha26__value span {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
    color: rgba(245, 241, 230, 0.88);
}

.ha26__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    opacity: 0;
    transform: translateY(22px);
}

.ha26__stats.is-visible {
    animation: ha26Rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.ha26__stat {
    padding: 0.85rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(143, 191, 90, 0.22);
    background: rgba(107, 184, 50, 0.06);
    text-align: center;
}

.ha26__stat strong {
    display: block;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #8fbf5a;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.ha26__stat span {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(245, 241, 230, 0.55);
    line-height: 1.25;
}

.ha26__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-top: 0.5rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(245, 241, 230, 0.1);
    opacity: 0;
    transform: translateY(22px);
}

.ha26__cta.is-visible {
    animation: ha26Rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

.ha26__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.85rem;
    padding: 0.75rem 1.25rem;
    border-radius: 11px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ha26__btn--primary {
    background: #6bb832;
    color: #0a0a0f !important;
    border: 1px solid rgba(107, 184, 50, 0.5);
    box-shadow: 0 10px 24px rgba(107, 184, 50, 0.2);
}

.ha26__btn--primary:hover {
    background: #7ac63a;
    transform: translateY(-1px);
}

.ha26__btn--ghost {
    background: rgba(255, 255, 255, 0.03);
    color: #F5F1E6 !important;
    border: 1px solid rgba(143, 191, 90, 0.35);
}

.ha26__btn--ghost:hover {
    border-color: rgba(143, 191, 90, 0.55);
    background: rgba(107, 184, 50, 0.08);
    transform: translateY(-1px);
}

.ha26__link {
    margin-left: auto;
    font-size: 0.88rem;
    font-weight: 600;
    color: #8fbf5a !important;
    text-decoration: none !important;
}

.ha26__link:hover {
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

@media (max-width: 720px) {
    .ha26__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .ha26__link {
        margin-left: 0;
        text-align: center;
    }

    .ha26__stats {
        grid-template-columns: 1fr;
    }
}

@keyframes ha26Rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ha26__visual,
    .ha26__head,
    .ha26__values,
    .ha26__stats,
    .ha26__cta,
    .ha26__visual-frame {
        opacity: 1;
        transform: none;
        animation: none !important;
        transition: none !important;
    }
}
