/* M2 IST — Ecosystem full page */

/* Compact cinematic hero — homepage effects at ecosystem page height */
.m2-hero--eco-compact {
    min-height: 0;
    display: block;
    padding: 120px 0 72px;
}
.m2-hero--eco-compact .m2-hero__content {
    max-width: 900px;
    margin: 0 auto;
}
.m2-eco-page-hero__brand {
    margin-bottom: 16px;
    font-size: 3rem;
    letter-spacing: -1.8px;
    line-height: 1.21;
    color: #fff;
}
@media (max-width: 1200px) {
    .m2-eco-page-hero__brand { font-size: calc(1.425rem + 2.1vw); }
}
.m2-eco-page-hero__title {
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #fff;
    line-height: 1.2;
    margin: 0 0 16px;
    text-wrap: balance;
    max-width: 16em;
    margin-inline: auto;
}
.m2-eco-page-hero__lead {
    color: rgba(255,255,255,.7);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.85;
    max-width: 640px;
    margin: 0 auto 28px;
}
.m2-eco-page-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.m2-eco-page-hero__pill {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(85,200,232,.28);
    padding: 7px 14px;
    border-radius: 999px;
}

.m2-eco-page-intro {
    padding: 64px 0;
    background: var(--m2-bg);
}
.m2-eco-page-intro__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 991px) { .m2-eco-page-intro__grid { grid-template-columns: 1fr; } }
.m2-eco-page-intro__card {
    background: #fff;
    border: 1px solid var(--m2-border);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
}
.m2-eco-page-intro__card i {
    font-size: 1.5rem;
    color: var(--m2-primary);
    margin-bottom: 14px;
}
.m2-eco-page-intro__card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--m2-ink);
}
.m2-eco-page-intro__card p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.75;
    color: var(--m2-muted);
}

.m2-eco-page-products { padding: 72px 0; background: #fff; }
.m2-eco-page-products__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
.m2-eco-product {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 28px;
    border: 1.5px solid var(--m2-border);
    border-radius: 20px;
    background: var(--m2-bg);
    transition: border-color .25s, box-shadow .25s;
}
.m2-eco-product:hover { border-color: rgba(8,145,178,.35); box-shadow: 0 16px 40px rgba(8,145,178,.1); }
.m2-eco-product--soon { opacity: .94; }
@media (max-width: 767px) {
    .m2-eco-product { grid-template-columns: 1fr; gap: 16px; }
}
.m2-eco-product__head { display: flex; flex-direction: column; gap: 12px; min-width: 140px; align-items: flex-start; }
.m2-eco-product__head .m2-eco-icon--lg { flex-shrink: 0; }
.m2-eco-product__cat {
    font-size: 11px; font-weight: 700; letter-spacing: .04em;
    color: var(--m2-primary); text-transform: uppercase;
}
.m2-eco-product__name {
    font-family: var(--m2-font-num);
    font-size: 1rem;
    font-weight: 700;
    color: var(--m2-ink);
}
.m2-eco-product__body h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--m2-ink);
    margin: 0 0 10px;
    line-height: 1.35;
    text-wrap: balance;
}
.m2-eco-product__body p {
    margin: 0 0 14px;
    font-size: .92rem;
    line-height: 1.8;
    color: var(--m2-muted);
}
.m2-eco-product__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.m2-eco-product__bullets li {
    font-size: 12px;
    font-weight: 600;
    color: var(--m2-text);
    background: #fff;
    border: 1px solid var(--m2-border);
    border-radius: 999px;
    padding: 5px 12px;
}
.m2-eco-product__bullets li::before { content: '✓ '; color: var(--m2-primary); }
.m2-eco-product__action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    min-width: 140px;
}
.m2-eco-product__soon {
    font-size: 11px;
    font-weight: 700;
    color: var(--m2-violet);
    background: rgba(124,58,237,.12);
    border: 1px solid rgba(167,139,250,.35);
    padding: 5px 12px;
    border-radius: 999px;
}

.m2-eco-page-faq {
    padding: 72px 0 88px;
    background: linear-gradient(180deg, var(--m2-bg) 0%, #fff 100%);
}
.m2-eco-faq {
    max-width: 820px;
    margin: 32px auto 0;
}
.m2-eco-faq__item {
    background: #fff;
    border: 1px solid var(--m2-border);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
}
.m2-eco-faq__q {
    width: 100%;
    text-align: right;
    background: none;
    border: none;
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 700;
    color: var(--m2-ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.m2-eco-faq__q i { color: var(--m2-primary); transition: transform .2s; }
.m2-eco-faq__item.is-open .m2-eco-faq__q i { transform: rotate(180deg); }
.m2-eco-faq__a {
    display: none;
    padding: 0 22px 18px;
    font-size: 14px;
    line-height: 1.85;
    color: var(--m2-muted);
}
.m2-eco-faq__item.is-open .m2-eco-faq__a { display: block; }

.m2-eco-page-cta {
    padding: 0 0 80px;
    background: #fff;
}
