/* EOS CMS / наші системи — лендінг (окремо від типових сторінок послуг) */

.eos-systems-page {
    position: relative;
    z-index: 1;
}

.eos-hero {
    position: relative;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.eos-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -20%, rgba(155, 89, 182, 0.35), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 50%, rgba(26, 188, 156, 0.12), transparent 50%),
        radial-gradient(ellipse 40% 50% at 0% 80%, rgba(255, 107, 157, 0.1), transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.eos-hero__inner {
    position: relative;
    z-index: 1;
}

/* Двоколонковий hero: текст + «картка» — щоб не виглядало як випадковий порожній правий край */
.eos-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: center;
}

@media (max-width: 900px) {
    .eos-hero__grid {
        grid-template-columns: 1fr;
    }

    .eos-hero__visual {
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.eos-hero__copy {
    min-width: 0;
}

.eos-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(26, 188, 156, 0.12);
    border: 1px solid rgba(26, 188, 156, 0.35);
}

.eos-hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    max-width: 14ch;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eos-hero__lead {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 42rem;
    margin-bottom: 1.75rem;
    line-height: 1.65;
}

.eos-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
    max-width: 36rem;
}

.eos-pill {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.eos-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.eos-hero__note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 36rem;
    margin-top: 1.25rem;
    line-height: 1.55;
}

/* Права колонка: схематична «вітрина» продукту */
.eos-hero__visual {
    min-width: 0;
}

.eos-hero__visual-card {
    border-radius: 18px;
    padding: 1.25rem 1.35rem 1.1rem;
    background: linear-gradient(160deg, rgba(15, 20, 25, 0.95), rgba(25, 32, 48, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(155, 89, 182, 0.15) inset;
    position: relative;
    overflow: hidden;
}

.eos-hero__visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 45%;
    background: radial-gradient(circle at 100% 0%, rgba(52, 152, 219, 0.2), transparent 70%);
    pointer-events: none;
}

.eos-hero__visual-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.eos-hero__visual-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.eos-hero__visual-dot:nth-child(1) { background: rgba(255, 107, 157, 0.65); }
.eos-hero__visual-dot:nth-child(2) { background: rgba(255, 215, 0, 0.55); }
.eos-hero__visual-dot:nth-child(3) { background: rgba(26, 188, 156, 0.55); }

.eos-hero__visual-title {
    margin-left: auto;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.eos-hero__visual-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.eos-hero__visual-list li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.45;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 0.65rem;
}

.eos-hero__visual-list li:last-of-type {
    border-bottom: none;
}

.eos-hero__visual-tag {
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
    background: rgba(52, 152, 219, 0.2);
    color: var(--cyan);
}

.eos-hero__visual-foot {
    margin: 0.85rem 0 0;
    font-size: 0.75rem;
    color: rgba(176, 184, 196, 0.85);
    text-align: center;
    position: relative;
    z-index: 1;
}

.eos-section {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.eos-section__head {
    margin-bottom: 1.5rem;
    max-width: 40rem;
}

.eos-section__kicker {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cyan);
    margin-bottom: 0.5rem;
}

.eos-section__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.eos-section__desc {
    color: var(--text-secondary);
    line-height: 1.65;
}

.eos-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 768px) {
    .eos-split {
        grid-template-columns: 1fr;
    }
}

.eos-panel {
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
}

.eos-panel h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.eos-panel p,
.eos-panel li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.eos-panel ul {
    margin: 0.75rem 0 0 1.1rem;
}

.eos-panel--accent {
    border-color: rgba(155, 89, 182, 0.35);
    background: linear-gradient(145deg, rgba(155, 89, 182, 0.12), var(--bg-card));
}

.eos-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.eos-feature {
    padding: 1.35rem 1.5rem;
    border-radius: 14px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.eos-feature:hover {
    border-color: rgba(52, 152, 219, 0.4);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.eos-feature__icon {
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 0.75rem;
    display: block;
}

.eos-feature h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.eos-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

.eos-integrations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.eos-int-badge {
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(52, 152, 219, 0.12);
    border: 1px solid rgba(52, 152, 219, 0.3);
    color: var(--text-primary);
}

.eos-demo__card {
    background: linear-gradient(145deg, rgba(52, 152, 219, 0.12), rgba(155, 89, 182, 0.12), var(--bg-card));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: clamp(1.25rem, 3vw, 1.8rem);
    box-shadow: var(--shadow-lg);
}

.eos-demo__brand {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.eos-demo__logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(5, 7, 15, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.45rem;
    flex-shrink: 0;
}

.eos-demo__brand h3 {
    margin: 0 0 0.2rem;
    font-size: 1.15rem;
}

.eos-demo__brand p {
    margin: 0;
    color: var(--text-secondary);
}

.eos-demo__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
}

.eos-demo__meta {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-secondary);
}

.eos-demo__meta li {
    margin-bottom: 0.4rem;
    line-height: 1.55;
}

.eos-demo__meta code {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 0.08rem 0.35rem;
    color: var(--text-primary);
}

.eos-cta {
    margin: clamp(2rem, 5vw, 3.5rem) 0 2rem;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(155, 89, 182, 0.15), rgba(26, 188, 156, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-lg);
}

.eos-cta h2 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    margin-bottom: 0.65rem;
}

.eos-cta p {
    color: var(--text-secondary);
    max-width: 36rem;
    margin: 0 auto 1.25rem;
    line-height: 1.6;
}

.eos-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.eos-cta__secondary {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.eos-cta__secondary:hover {
    text-decoration: underline;
}

.header .nav-link.nav-link--product {
    color: var(--text-primary);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(155, 89, 182, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.header .nav-link.nav-link--product:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(155, 89, 182, 0.22));
    color: var(--text-primary);
}
