/* Основные стили для Bahsegel */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.wr_block {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Хедер - основной цвет #ffffff */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header_wrapp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 30px;
}

.header_logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header_logo__img {
    max-height: 50px;
    width: auto;
    height: auto;
}

.header_buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

/* Бургер меню */
.burger_menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    order: 1;
}

.burger_menu span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger_menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger_menu.active span:nth-child(2) {
    opacity: 0;
}

.burger_menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Мобильная навигация */
.mobile_navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 1000;
}

.mobile_navigation.active {
    max-height: 500px;
}

.mobile_navigation_list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile_navigation_list li {
    margin-bottom: 10px;
}

.mobile_nav_link {
    display: block;
    padding: 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile_nav_link:hover {
    background-color: rgba(249, 160, 29, 0.1);
    color: #f9a01d;
}

/* Навигация */
.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.navigation_list {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.navigation_ltem {
    margin: 0;
}

.bl_nav__link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block;
}

.bl_nav__link:hover {
    color: #f9a01d;
    background-color: rgba(249, 160, 29, 0.1);
}

/* Кнопки */
.btn_login,
.btn_reg {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn_login {
    background-color: #07badb;
    color: #ffffff;
    border: 2px solid #07badb;
}

.btn_login:hover {
    background-color: #0599b3;
    border-color: #0599b3;
}

.btn_reg {
    background-color: #f9a01d;
    color: #ffffff;
    border: 2px solid #f9a01d;
}

.btn_reg:hover {
    background-color: #e08d0f;
    border-color: #e08d0f;
    color: #ffffff;
}

.btn-text-mobile {
    display: none;
}

/* Основной контент */
.all_wrapper {
    flex: 1;
    padding: 30px 0;
}

.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bl_seo {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Вводная секция */
.intro_section {
    margin-bottom: 30px;
}

.intro_text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

/* Кнопка CTA */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f9a01d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: #e08d0f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 160, 29, 0.4);
}

/* Информационные карточки */
.info_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.info_card {
    background: linear-gradient(135deg, #1095b5 0%, #0d7a94 100%);
    padding: 30px;
    border-radius: 15px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 5px 20px rgba(16, 149, 181, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.info_card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
    opacity: 0;
}

.info_card:hover::before {
    opacity: 1;
    top: -30%;
    right: -30%;
}

.info_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(16, 149, 181, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.card_title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

.card_value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.card_value a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.card_value a:hover {
    color: #f9a01d;
    transform: scale(1.05);
    text-decoration: none;
}

.card_value a.card_url {
    font-size: 16px;
    word-break: break-word;
}

/* Таблица */
.wp-block-table {
    margin: 30px 0;
    overflow-x: auto;
}

.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.wp-block-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.wp-block-table tr:last-child td {
    border-bottom: none;
}

.wp-block-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.wp-block-table tr:hover {
    background-color: rgba(7, 186, 219, 0.05);
}

/* Секция преимуществ */
.advantages_section {
    margin: 40px 0;
}

.wp-block-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.3;
}

.advantages_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.advantage_item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.advantage_item:hover {
    border-color: #f9a01d;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(249, 160, 29, 0.2);
}

.advantage_icon {
    font-size: 40px;
}

.advantage_text {
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

/* Список функций */
.features_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature_card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #07badb 0%, #f9a01d 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature_card:hover::before {
    transform: scaleX(1);
}

.feature_card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 30px rgba(7, 186, 219, 0.25);
    border-color: #07badb;
}

.feature_icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.feature_card:hover .feature_icon {
    transform: scale(1.1) rotate(5deg);
}

.feature_title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #333;
    text-align: center;
}

.feature_card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
    font-size: 15px;
}

.feature_btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #f9a01d 0%, #e08d0f 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    box-shadow: 0 3px 10px rgba(249, 160, 29, 0.3);
}

.feature_btn:hover {
    background: linear-gradient(135deg, #e08d0f 0%, #d17d0e 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 160, 29, 0.4);
}

/* Упорядоченный список преимуществ */
.advantages_ordered {
    margin: 25px 0;
    padding-left: 25px;
}

.advantages_ordered li {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.advantages_ordered strong {
    color: #07badb;
    font-weight: 700;
}

/* FAQ */
.faq_block {
    margin: 40px 0;
}

.faq_item {
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq_item:hover {
    box-shadow: 0 5px 20px rgba(7, 186, 219, 0.15);
    border-color: rgba(7, 186, 219, 0.3);
}

.faq_item.active {
    border-color: #07badb;
    box-shadow: 0 5px 25px rgba(7, 186, 219, 0.2);
}

.faq_question {
    padding: 25px;
    font-weight: 700;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq_question:hover {
    background: linear-gradient(135deg, rgba(7, 186, 219, 0.1) 0%, rgba(7, 186, 219, 0.05) 100%);
    color: #07badb;
}

.faq_item.active .faq_question {
    background: linear-gradient(135deg, rgba(7, 186, 219, 0.15) 0%, rgba(7, 186, 219, 0.08) 100%);
    color: #07badb;
}

.faq_icon {
    font-size: 24px;
    font-weight: 300;
    color: #07badb;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(7, 186, 219, 0.1);
}

.faq_item.active .faq_icon {
    transform: rotate(45deg);
    background-color: #07badb;
    color: #ffffff;
}

.faq_answer {
    padding: 0 25px;
    color: #666;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 15px;
}

.faq_item.active .faq_answer {
    max-height: 500px;
    padding: 20px 25px 25px;
}

/* Футер - цвет #1095b5 */
.footer {
    background: linear-gradient(135deg, #1095b5 0%, #0d7a94 100%);
    padding: 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #07badb 0%, #f9a01d 50%, #07badb 100%);
}

.footer_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 0;
}

.footer_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer_section {
    color: #ffffff;
}

.footer_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
}

.footer_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f9a01d 0%, #07badb 100%);
    border-radius: 2px;
}

.footer_text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

.footer_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_links li {
    margin-bottom: 12px;
}

.footer_links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer_links a::before {
    content: '→';
    margin-right: 8px;
    color: #f9a01d;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer_links a:hover {
    color: #ffffff;
    padding-left: 15px;
    transform: translateX(5px);
}

.footer_links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer_bottom {
    padding: 30px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer_copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer_elements {
    text-align: center;
}

.text_politics {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

/* Кнопка наверх */
.btn_bodytop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #f9a01d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(249, 160, 29, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.btn_bodytop:hover {
    background-color: #e08d0f;
    transform: translateY(-3px);
}

.btn_bodytop:hover::before {
    color: #ffffff;
}

.btn_bodytop::before {
    content: '↑';
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

/* Ссылки */
a {
    color: #f9a01d;
    transition: color 0.3s ease;
}

a:hover {
    color: #e08d0f;
}

/* Адаптивность */
@media (max-width: 768px) {
    .header_wrapp {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    .burger_menu {
        display: flex;
        order: 1;
    }

    .header_logo {
        order: 2;
        flex: 1;
        justify-content: center;
    }

    .header_buttons {
        order: 3;
        gap: 8px;
    }

    .navigation {
        display: none;
    }

    .mobile_navigation {
        display: block;
    }

    .btn-text-desktop {
        display: none;
    }

    .btn-text-mobile {
        display: block;
    }

    .btn_login,
    .btn_reg {
        padding: 8px 12px;
        font-size: 12px;
    }

    .bl_seo {
        padding: 20px;
    }

    .wp-block-heading {
        font-size: 24px;
    }

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

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

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

    .btn_bodytop {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .footer_content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer_container {
        padding: 40px 20px 0;
    }

    .footer_title {
        font-size: 18px;
    }

    .text_politics {
        font-size: 12px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .intro_text {
        font-size: 16px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Дополнительные стили для улучшения визуального дизайна */
.column {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

p {
    margin-bottom: 15px;
    color: #555;
}

h2, h3 {
    color: #333;
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature_card,
.advantage_item,
.info_card {
    animation: fadeIn 0.5s ease-out;
}
