/* SEO BLOCK */
.seo-element {
    padding: 96px 0;
    font-family: "Roboto", sans-serif;
}
.seo-element::before {
    /* content: "";
    display: block;
    background: #007aff33;
    backdrop-filter: blur(400px);
    width: 360px;
    height: 968px; */
}
@media (max-width: 992px) {
    .seo-element {
        padding: 64px 15px;
    }
}

.seo-element__container {
    max-width: 1340px;
    padding: 80px;
    display: flex;
    gap: 64px;
    background: #fff;
    border: 1px solid #e3e8ef;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}


.seo-element__container::after {
    content: "";
    position: absolute;
    top: -50%;
    right: 0;
    width: 100%;
    height: 150%;
    background: url(../../assets/img/seo-bg.svg) no-repeat center;
    background-size: cover;
    backdrop-filter: blur(400px);
    z-index: 0;
}
@media (max-width: 992px) {
    .seo-element__container::after {
        display: none;
    }
}
.seo-element__container::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 992px) {
    .seo-element__container::before,
    .seo-element__container::after {
        display: none;
    }
}

.seo-element__container > * {
    position: relative;
    z-index: 2; /* контент завжди вище всього */
}
@media (max-width: 992px) {
    .seo-element__container {
        flex-direction: column;
        padding: 64px 15px;
        gap: 48px;
    }
}
.seo-element__column {
    display: flex;
    flex-direction: column;
}

.seo-element__column:first-child {
    max-width: 451px;
    width: 100%;
}

@media (max-width: 992px) {
    .seo-element__column:first-child {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}
.seo-element__column:last-child {
    max-width: 665px;
}
@media (max-width: 992px) {
    .seo-element__column:last-child {
        max-width: 100%;
    }
    .seo-element:not(.seo-element--info) .seo-element__column {
        text-align: center;
    }
}
.seo-element.seo-element--info .seo-element__column:last-child,
.seo-element.seo-element--info .seo-element__column:first-child {
    max-width: 542px;
}
@media (max-width: 992px) {
    .seo-element.seo-element--info .seo-element__column:last-child,
    .seo-element.seo-element--info .seo-element__column:first-child {
        max-width: 100%;
    }
    .seo-element.seo-element--info .seo-element__container {
        border: 0;
        padding: 0;
        background: none;
    }
    .seo-element.seo-element--accordion {
        background: #f8fafc;
    }
}
.seo-element__logo {
    max-width: 95px;
    width: 100%;
}
.seo-element__logo img {
    width: 100%;
}

.seo-element__title {
    font-size: 36px;
    line-height: 44px;
    color: #202939;
    margin-top: 16px;
    margin-bottom: 0;
}
@media (max-width: 480px) {
    .seo-element__title {
        font-size: 24px;
        line-height: 32px;
    }
}
.seo-element__description {
    margin-top: 20px;
    font-size: 18px;
    line-height: 28px;
    color: #364152;
}
@media (max-width: 480px) {
    .seo-element__description {
        font-size: 16px;
        line-height: 1.5;
    }
}
.seo-element__items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.seo-element__item-title {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 32px;
    color: #202939;
    font-weight: 600;
}
.seo-element__item-description {
    font-size: 16px;
    line-height: 1.5;
    color: #364152;
    margin-top: 12px;
}
@media (max-width: 480px) {
    .seo-element__item-description {
        font-size: 14px;
        line-height: 1.5;
    }
}
.seo-element__info-link-url,
.seo-element__link-url {
    padding: 8px 12px;
    background: #007aff;
    border-radius: 4px;
    color: #fff;
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
}
@media (max-width: 992px) {
    .seo-element__info-link-url,
    .seo-element__link-url {
        margin: 40px auto 0 auto;
    }
}
.seo-element__info-link-url {
    margin-top: 24px;
}
@media (max-width: 992px) {
    .seo-element__info-link-url {
        margin: 24px auto 0 auto;
    }
}
.seo-element__info-link-url::after,
.seo-element__link-url::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url('../../assets/img/icons/chat-icon.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

.seo-element--accordion .seo-element__item {
    padding: 24px 0 32px 0;
    border-top: 1px solid #e3e8ef;
}
.seo-element--accordion .seo-element__items {
    gap: 0;
}
.seo-element--accordion .seo-element__item-title {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 480px) {
    .seo-element--accordion .seo-element__item-title {
        font-size: 16px;
        line-height: 1.5;
    }
}

.seo-element--accordion .seo-element__item-toggle {
    align-self: self-start;
}

.seo-element--accordion .seo-element__item-toggle:after {
    content: "";
    transition: all 0.3s ease;
    background: url("../../assets/img/icons/accordion-open.svg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 22px;
    height: 22px;
    display: block;
}

.seo-element--accordion .seo-element__item--active .seo-element__item-toggle:after {
    background: url('../../assets/img/icons/accordion-close.svg');
}
.seo-element__info {
    display: flex;
    gap: 48px;
    margin-top: auto;
    margin-bottom: 35px;
}
.seo-element__info-mobile {
    display: none;
}
@media (max-width: 1220px) {
    .seo-element__info {
        gap: 20px;
        padding: 24px;
    }
}
@media (max-width: 1140px) {
    .seo-element__info {
        flex-direction: column-reverse;
    }
}
@media (max-width: 992px) {
    .seo-element__info-mobile {
        display: flex;
    }
    .seo-element__info-desktop {
        display: none;
    }

    .seo-element__info {
        flex-direction: column-reverse;
        padding: 24px;
        border: 1px solid #e3e8ef;
        border-radius: 4px;
        margin-top: 48px;
        gap: 32px;
    }
}
.seo-element__info-title {
    font-size: 24px;
    line-height: 32px;
    color: #202939;
    font-weight: 600;
}
.seo-element__info-description {
    font-size: 16px;
    line-height: 1.5;
    color: #364152;
}
.seo-element__info-column:first-child {
    max-width: 200px;
    width: 100%;
}
@media (max-width: 992px) {
    .seo-element__info-column:first-child {
        max-width: 100%;
    }
}
.seo-element__info-image {
    max-height: 200px;
    height: 100%;
    min-width: 200px;
}
@media (max-width: 992px) {
    .seo-element__info-image {
        max-height: unset;
    }
}
.seo-element__info-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.seo-element__info-column:last-child {
    max-width: 294px;
}

@media (max-width: 992px) {
    .seo-element__info-column:last-child {
        max-width: 100%;
    }
}
.seo-element--accordion .seo-element__item-description--hidden {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    margin: 0;
    transition: 0.3s ease;
}
.seo-element--accordion .seo-element__item-description {
    transition: 0.3s ease;
    overflow: hidden;
}
