



/* ----- ПРЕДНАСТРОЙКИ */

/* Цвета */
:root {
    --color-white: #ffffff; 
    --color-green: #77bc01;
    --color-yellow: #f3c911;
    --color-text0: #444444;
    --color-text1: #767676;
    --color-text2: #a9a8a4;
    --color-text3: #5f5f5e;

    --color-brand: #a756be;
    --color-web: #a4bfef;
    --color-pack: #e27bb9;
    --color-graphic: #f28976;
    --color-media: #d64d58;

/* Параметры блоков */
    --spacing: 30px;
    --spacing-block: 16px;
    --spacing-mini: 6px;
    --width: 1620px;
    --width-text: 1200px;
    --subcontent: 10px;
    --radius-btn: 4px;
    --radius-1620: 10px;

    --shadow-out: 0 0 10px rgba(23, 39, 16, 0.2);
}
@media (max-width: 768px) {
    :root {
        --spacing: 10px;
    }
}


/* ----- КАСТОМНЫЕ ШРИФТЫ */

/* Заголовок и текст*/
@font-face {
    font-family: 'Ubuntu-Regular';
    src: url('../fonts/Ubuntu-Regular.woff2') format('woff2'),
        url('../fonts/Ubuntu-Regular.woff') format('woff'),
        url('../fonts/Ubuntu-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Ubuntu-Medium';
    src: url('../fonts/Ubuntu-Medium.woff2') format('woff2'),
        url('../fonts/Ubuntu-Medium.woff') format('woff'),
        url('../fonts/Ubuntu-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Ubuntu-Light';
    src: url('../fonts/Ubuntu-Light.woff2') format('woff2'),
        url('../fonts/Ubuntu-Light.woff') format('woff'),
        url('../fonts/Ubuntu-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu-Bold';
    src: url('../fonts/Ubuntu-Bold.woff2') format('woff2'),
        url('../fonts/Ubuntu-Bold.woff') format('woff'),
        url('../fonts/Ubuntu-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Ubuntu-Italic';
    src: url('../fonts/Ubuntu-Italic.woff2') format('woff2'),
        url('../fonts/Ubuntu-Italic.ttf') format('truetype');
    font-display: swap;
}


/* Подзаголовок */
@font-face {
    font-family: 'Roboto-regular';
    src: url('../fonts/Roboto-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto.woff2') format('woff2'),
        url('../fonts/Roboto.ttf') format('truetype');
    font-style: normal;
    font-display: swap;
}



/* ----- СКРОЛ */

/* Для (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--color-green); 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-green); 
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    body {
        -webkit-overflow-scrolling: touch;
    }
}
/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--color-green) #f1f1f1;
    scroll-behavior: smooth;
    scroll-timeline: cubic-bezier(0.42, 0, 0.58, 1);
}

#back-to-top {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
/* Для браузеров, которые не поддерживают scroll-timeline */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    .smooth-scroll {
        scroll-behavior: smooth;
        transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
    }
}




/* ----- СБРОС ПО УМОЛЧАНИЮ */

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

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


/* Сброс стиля ссылки */
.footer-button-link {
    text-decoration: none;
    display: inline-block;
}

/* Простые стили ссылок */
a { 
    color: var(--color-green); text-decoration: none; 
}
a:hover { 
    text-decoration: underline;
}



/* ----- ОСНОВА */

html {
    height: 100%; 
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: inherit; 
}


body {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    font-family: 'Ubuntu-Regular', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
    height: 100vh;
    color: var(--color-text1);
    min-width: 300px;
}
@supports (-webkit-hyphens:none) {
    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        -webkit-font-smoothing: subpixel-antialiased !important;
    }
}


.page-home {
    display: block;
    padding: 0;
    height: auto;
}


/* Отодвигание подвала */
.main-content {
    flex-grow: 1;
}


h1 {
    font-family: 'Ubuntu-Light';
    font-weight: lighter;
    color: var(--color-green);
    font-size: 2.8em;
}
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
}

strong, b {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600; /* Semi-bold */
    -webkit-font-smoothing: antialiased;
}

.divider {
    height: 1px;
    background: var(--color-text2);
    width: 60%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--color-text2) 20%,
        var(--color-text2) 80%,
        transparent 100%
    );
    margin-bottom: var(--spacing);
}



/* ----- КНОПКИ */

/* Кнопка Начать */
.cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 70px 0;
}
.cta-button {
    padding: 10px 50px;
    background: var(--color-yellow);
    color: var(--color-text3);
    border: none;
    border-radius: var(--radius-btn);
    font-family: 'Roboto-regular', 'Ubuntu-Light', Arial, sans-serif;
    font-size: 1.6em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}
.cta-button:hover {
    color: var(--color-white);
}



/* ----- SEO БЛОК */

.seo-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: var(--width);
    padding: 20px var(--spacing);
    margin-bottom: var(--spacing);
}
.seo-text {
    display: block; 
    width: 100%; 
    color: var(--color-text2);
    text-align: left;
    font-size: 0.9em;
    line-height: 1.6;
}



/* ----- ПОДВАЛ */


.main-footer {
    position: relative;
    background-color: var(--color-text1);
    color: var(--color-white);
    width: 100%;
    max-width: var(--width);
}
.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.footer-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; 
}
.footer-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-block);
    padding-bottom: var(--spacing-block);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
/* Логотип */
.footer-logo {
    flex: 0 0 auto;
}
.footer-logo img {
    width: 150px;
    height: auto;
}
/* Меню */
.footer-menu-top {
    display: flex;
    margin: 0 var(--spacing-block);
}
.footer-menu-top a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.0rem;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
    padding: 10px;
}
.footer-menu-top a:hover {
    background-color: var(--color-green);
    border-radius: var(--radius-btn);
}
/* Блок контактов */
.footer-top-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    font-size: 0.8rem;
}
.footer-phone a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    white-space: nowrap;
}
.footer-meseger {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 16px;
}
.footer-icon {
    display: inline-block;
    width: 32px;
    height: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-icon:hover {
    transform: scale(1.1);
}

/* Нижняя часть футера */
.footer-bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    color: var(--color-white);
    font-size: 0.8rem;
    line-height: 1.6;
}
.footer-col_1 a, .footer-col_3 a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
    gap: 20px;
}
/* Контакты */
.footer-col_1 {
    line-height: 1.8;
}
.footer-col_1 a:first-child {
    font-size: 1.0rem;
    display: inline-block;
}

.copyright {
    color: var(--color-text2);
    font-size: 13px;
    margin-top: 10px;
}
.footer-col_2 {
    line-height: 1.7;
    max-width: 400px;
}
.footer-col_3 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
    gap: 10px;
}
.footer-vacancy a:hover {
    text-decoration: underline;
    cursor: pointer;
}
.privacy {
    color: var(--color-text2) !important;
    cursor: pointer;
}
.privacy:hover {
    text-decoration: underline !important;
}
.footer-email {
    font-size: 0.9rem;
}


/* Адаптивность */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    .footer-menu-top {
        order: 2;
        margin: 10px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-top-right {
        order: 3;
        align-items: center;
    }
    .footer-icon {
        display: inline-block;
        width: 40px;
        height: auto;
    }
    .footer-bottom {
        display: none;
    }
}
@media (max-width: 768px) {
    .footer-menu-top {
        flex-direction: column;
        gap: 15px;
    }
    .footer-menu-top a {
        font-size: 0.9rem;
        padding: 8px;
    }
}





/* ----- КНОПКА ВВЕРХ */

.back-to-top {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: visible; 
}
.back-to-top img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

/* Текст над иконкой */
.back-to-top::before {
    content: 'ВВЕРХ';
    position: absolute;
    top: -40px; /* Над кнопкой */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    color: white;
    background-color: var(--color-green);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1001;
}

/* Стрелочка у текстового блока */
.back-to-top::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--color-green) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.back-to-top:hover {
    transform: translateY(-3px);
}
/* При наведении показываем текст */
.back-to-top:hover::before,
.back-to-top:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
/* Адаптивность */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 66px;
        height: 66px;
    }
    
    .back-to-top img {
        width: 100%;
        height: auto;
    }
    
    .back-to-top::before {
        font-size: 10px;
        padding: 4px 8px;
        top: -35px;
    }
}









/** ----- МОДАЛЬНОЕ ОКНО */

/* Сброс стандартных стилей */
.modal input,
.modal button {
    all: unset;
    box-sizing: border-box;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 74, 74, 0.25); 
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal:target {
    display: flex;
    flex-direction: column;
}

.modal-content {
    display: flex;
    flex-direction: column;
    background: rgba(119, 188, 1, 0.95); 
    padding: 30px;
    border-radius: var(--radius-btn);
    position: relative;
    max-width: 380px;
    width: 90%;
    box-shadow: var(--shadow-out);
}
.modal-close {
    font-family: 'Roboto', Arial, sans-serif;
    position: absolute;
    top: 13px;
    right: 30px;
    font-size: 50px;
    text-decoration: none;
    color: var(--color-white);
    z-index: 1;
    cursor: pointer;
}
.modal-close:hover {
    text-decoration: none;
}
.modal-content h3 {
    font-family: 'Ubuntu-Light', Arial, sans-serif;
    color: var(--color-white);
    font-size: 1.6rem;
    text-transform: uppercase;
    text-align: left;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}
.modal input[type="text"],
.modal input[type="email"],
.modal input[type="tel"] {
    background-color: var(--color-white); 
    color: var(--color-text0); 
    padding: 12px 15px;
    border-radius: var(--radius-btn);
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.2s ease;
}
.modal input::placeholder {
    color: var(--color-text1);
    opacity: 1;
}
.modal input:focus {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

.custom-select-wrapper {
    position: relative;
}
.custom-select {
    position: relative;
}
.custom-select__trigger {
    background-color: var(--color-white);
    color: var(--color-text1);
    font-size: 0.9rem;
    padding: 12px 15px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    position: relative;
}
.custom-select__trigger:after {
    content: "▼";
    position: absolute;
    right: 15px;
    color: var(--color-yellow);
}
.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 0.9rem;
    right: 0;
    background: var(--color-white);
    border-radius: 4px;
    box-shadow: var(--shadow-out);
    display: none;
    z-index: 10;
}
.custom-option {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}
.custom-option:hover {
    background-color: var(--color-yellow);
}
.custom-option.selected {
    background-color: var(--color-yellow);
    color: white;
}

.modal p {
    font-size: 0.8rem;
    color: var(--color-white); 
    line-height: 1.4;
    margin: 10px 0;
    text-align: left;
}

.modal button[type="submit"] {
    background-color: var(--color-yellow); 
    color: var(--color-text3);
    padding: 15px;
    border-radius: var(--radius-btn);
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}
.modal button[type="submit"]:hover {
    color: var(--color-white);
}
.modal-link {
    text-decoration: underline;
    color: inherit;
    transition: opacity 0.3s;
    cursor: pointer;
}
.modal-link:hover {
    opacity: 0.7;
}

/* Сообщения о процессах */

.form-message-global {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-out);
    z-index: 1001;
    text-align: center;
    font-size: 1.0rem;
    max-width: 500px;
    border: 2px solid var(--color-text1);
    line-height: 1.7;
}
.form-message-global.success {
    border-color: var(--color-text1);
    color: var(--color-text1);
    background: var(--color-yellow);
}

/* Для ошибок */
.form-message-global.error {
    border-color: var(--color-white);
    color: var(--color-white);
    background: var(--color-media);
}




/* Адаптивность */
@media (max-width: 480px) {
    .modal-content {
        padding: 20px;
        width: 95%;
    }
}




/** ----- ТАБЛИЦЫ ДЛЯ ТЕКСТА */

.vertical-borders-table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed; /*? равное распределение */
}
/* Стили для ячеек (td) */
.vertical-borders-table td {
    padding: 0 20px;
    text-align: left;
    border-right: 1px solid #ccc; /*? Правая граница */
    vertical-align: top;
    width: 1%; /*? равное распределение */
}
/*? Убираем правую границу у последней ячейки */   
.vertical-borders-table td:last-child {
    border-right: none;
}
/*? Убираем левую границу у первой ячейки */
.vertical-borders-table td:first-child {
    padding-left: 0;
    border-left: none;
}
/*? Убираем горизонтальные границы */
.vertical-borders-table tr {
    border-top: none;
    border-bottom: none;
}

@media (max-width: 768px) {
    .vertical-borders-table {
        display: block;
    }

    .vertical-borders-table td {
        display: block; 
        width: 100%;   
        padding: 15px 0px; 
        border-right: none; 
        border-bottom: 1px solid #ccc;
        box-sizing: border-box; 
    }

    .vertical-borders-table td:last-child {
        border-bottom: none;
    }
    .vertical-borders-table td:first-child {
        padding-top: 15px;
        border-top: none;
        border-left: none;
    }
    .vertical-borders-table td:last-child {
        border-right: none;
    }
    .vertical-borders-table tr {
        border: none; 
        margin-bottom: 0;
    }
    .vertical-borders-table td:last-child {
        border-bottom: none;
    }
}





/** ----- БЛОК ПАГИАНЦИИ */


.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 60px 0;
    padding: 20px;
    flex-wrap: wrap;
}
.pagination-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-btn {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--color-green);
    font-family: Arial, sans-serif;
    font-size: 1.0rem;
    color: var(--color-white);
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid var(--color-green);

    position: relative;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.prev-btn:hover {
    padding-left: 40px;
    padding-right: 20px;
}
.prev-btn:hover span {
    transform: translateX(0px); /*? Текст вправо */
}
.prev-btn:hover svg {
    transform: translateX(-20px); /*? Стрелка влево */
}
.next-btn:hover {
    padding-right: 40px;
    padding-left: 20px;
}
.next-btn:hover span {
    transform: translateX(0px); 
}
.next-btn:hover svg {
    transform: translateX(20px);
}

.pagination-btn span,
.pagination-btn svg {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.pagination-btn.disabled {
    background: transparent;
    color: #d3d1d1;
    border-color: #e4e1e1;
    cursor: not-allowed;
}
.pagination-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

.pag-page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    color: var(--color-text1);
    text-decoration: none;
    transition: all 0.2s ease;
}
.pag-page-number:hover {
    background: var(--color-green);
    color: var(--color-white);
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
}
.pag-page-number.current {
    background: var(--color-green);
    color: white;
    font-weight: 600;
}
.pag-page-dots {
    color: #999;
    padding: 0 5px;
}

.pag-page-info {
    color: var(--color-text1);
    font-size: 14px;
    padding: 10px 20px;
    background: #f9f9f9;
    border-radius: 20px;
    border: 1px solid #eee;
}
.pag-page-info:hover {
    border: 1px solid  #c1c1c1;
}

/* Адаптивность */
@media (max-width: 768px) {
    .pagination {
        gap: 10px;
        flex-direction: column;
    }
    .pagination-numbers {
        order: 3;
        margin-top: 15px;
    }
    .pag-page-info {
        order: 2;
    }
    .pagination-btn {
        min-width: 160px;
        padding: 10px 20px;
        font-size: 14px;
    }
    .pag-page-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}



/* СООБЩЕНИЕ О ПАГИНАЦИИ TOOLTIP */

.pag-page-info {
    position: relative;
    cursor: help;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    padding: 10px 16px;
    border-radius: 20px;
    color: var(--color-text1);
    font-size: 0.95rem;
    font-weight: 300;
}
.pag-page-info::after {
    content: '?';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-left: 8px;
    background: var(--color-text2);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.pag-tooltip-container {
    position: relative;
}
.pag-tooltip-content {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 280px;
    padding: 20px;
    background: rgb(247, 247, 247);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--color-text0);
    opacity: 0;
    visibility: hidden;
    border: 1px solid #eee;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    margin-bottom: 16px;
    text-align: left;
}
.pag-tooltip-content::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--color-white);
}

.pag-tooltip-container:hover .pag-tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.pag-tooltip-text br {
    margin-bottom: 6px;
    display: block;
    content: '';
}


/* Анимация появления */
@keyframes tooltipPulse {
    0% { transform: translateX(-50%) scale(0.95); opacity: 0; }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
}
.pag-tooltip-container:hover .pag-tooltip-content {
    animation: tooltipPulse 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .pag-tooltip-content {
        width: 250px;
        left: 50%;
        transform: translateX(0) translateY(-10px);
    }
    
    .pag-tooltip-content::before {
        left: 100px;
    }
}





/* КУКИ */
.cookie-base {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    color: var(--color-text1);
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    border-top: 1px solid var(--color-green);
    z-index: 1000;
}
.cookie-ok {
    background: var(--color-green);
    color: var(--color-white);
    border: none;
    padding: 10px 24px;
    border-radius: 2px;
    cursor: pointer;
    margin-left: 15px;
    font-weight: normal;
}
.cookie-ok:hover {
    background: var(--color-text1);
}