/* 
 * Стили для сайта коуча Ксении Климовой
 * Полностью идентичны оригинальному дизайну Tilda
 */

/* CSS переменные для цветов Tiffany */
:root {
    --primary-color: #0abab5;        /* Tiffany Blue */
    --secondary-color: #81d8d0;      /* Light Tiffany Blue */
    --text-color: #2c3e50;           /* Dark blue-gray */
    --light-bg: #f0fdfc;             /* Very light Tiffany */
    --white: #ffffff;
    --dark: #1a252f;                 /* Dark blue-gray */
    --light-text: #7f8c8d;           /* Medium gray */
    --border-color: rgba(10, 186, 181, 0.3); /* Tiffany with opacity */
}

/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Стили для PNG иконок с градиентом и тенью */
.feature-icon-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: 
        drop-shadow(0 4px 12px rgba(10, 186, 181, 0.25))
        drop-shadow(0 2px 6px rgba(10, 186, 181, 0.15));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon-img:hover {
    transform: translateY(-8px) scale(1.15);
    filter: 
        drop-shadow(0 8px 20px rgba(10, 186, 181, 0.4))
        drop-shadow(0 4px 12px rgba(10, 186, 181, 0.3))
        drop-shadow(0 2px 6px rgba(10, 186, 181, 0.2));
}

.service-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: 
        drop-shadow(0 3px 10px rgba(10, 186, 181, 0.2))
        drop-shadow(0 1px 4px rgba(10, 186, 181, 0.1));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon-img:hover {
    transform: translateY(-6px) scale(1.12);
    filter: 
        drop-shadow(0 6px 16px rgba(10, 186, 181, 0.35))
        drop-shadow(0 3px 10px rgba(10, 186, 181, 0.25))
        drop-shadow(0 1px 4px rgba(10, 186, 181, 0.15));
}

/* Основные стили */
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 20%, var(--white) 40%, var(--light-bg) 60%, var(--white) 80%, var(--light-bg) 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Навигация */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    height: 100px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 40px;
}

.navbar-brand img,
.logo-svg {
    max-height: 80px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img,
.navbar-brand:hover .logo-svg {
    transform: scale(1.05);
}

.logo-svg:hover {
    filter: brightness(1.1);
}

.logo-svg:hover path {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Инверсия цветов тетраэдра при наведении */
.logo-svg:hover .tetrahedron-base {
    fill: #0abab5 !important;
    transition: fill 0.3s ease;
}

.logo-svg:hover .tetrahedron-left {
    fill: #0a8a85 !important;
    transition: fill 0.3s ease;
}

.logo-svg:hover .tetrahedron-right {
    fill: #066b67 !important;
    transition: fill 0.3s ease;
}

.logo-svg:hover .tetrahedron-top {
    fill: #0abab5 !important;
    transition: fill 0.3s ease;
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    padding: 0 15px;
}

.nav-link {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    display: block;
    outline: none;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--primary-color);
    text-decoration: none;
}

.nav-link:active {
    color: var(--primary-color);
    transform: translateY(1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    pointer-events: none;
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
    width: 100%;
}

/* Кнопка в хедере */
.navbar-button {
    display: flex;
    align-items: center;
}

.navbar-button .btn-telegram svg {
    transition: transform 0.3s ease;
}

.navbar-button .btn-telegram:hover svg {
    transform: scale(1.1);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: 20px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Плавающая кнопка связи */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.contact-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.5) 0%, rgba(107, 197, 192, 0.5) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(10, 186, 181, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    outline: none;
}

.contact-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 186, 181, 0.4);
    background: linear-gradient(135deg, rgba(10, 138, 133, 0.7) 0%, rgba(107, 197, 192, 0.7) 100%);
    border-radius: 50%;
}

.contact-btn:active {
    transform: scale(0.98) translateY(0);
    border-radius: 50%;
}

.contact-links {
    position: absolute;
    right: 0;
    bottom: 80px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(10, 186, 181, 0.15);
    padding: 15px;
    display: none;
    min-width: 180px;
    border: 1px solid rgba(10, 186, 181, 0.1);
    backdrop-filter: blur(10px);
}

.floating-contact:hover .contact-links {
    display: block;
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Кнопка поднятия наверх */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.5) 0%, rgba(107, 197, 192, 0.5) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(10, 186, 181, 0.3);
    outline: none;
}

/* Класс .show больше не нужен, кнопка всегда видна */

/* Модальное окно успешной отправки */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1003;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.show {
    opacity: 1;
    visibility: visible;
}

.success-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 186, 181, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s ease;
}

.success-modal.show .success-modal-content {
    transform: scale(1) translateY(0);
}

.success-modal-icon {
    color: #0abab5;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.success-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #0a8a85;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.success-modal-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Адаптивность для модального окна */
@media screen and (max-width: 768px) {
    .success-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .success-modal-title {
        font-size: 24px;
    }
    
    .success-modal-text {
        font-size: 14px;
    }
    
    .success-modal-icon svg {
        width: 48px;
        height: 48px;
    }
}

/* Cookie баннер */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.95) 0%, rgba(107, 197, 192, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    z-index: 1002;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(10, 186, 181, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner-text {
    flex: 1;
    color: var(--white);
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
}

.cookie-banner-text a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    opacity: 0.8;
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-banner-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-banner-btn-accept {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--white);
}

.cookie-banner-btn-accept:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.cookie-banner-btn-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cookie-banner-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-1px);
}

/* Адаптивность для cookie баннера */
@media screen and (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-banner-text {
        font-size: 13px;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-banner-btn {
        flex: 1;
        max-width: 120px;
        padding: 12px 16px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .cookie-banner {
        padding: 12px;
    }
    
    .cookie-banner-text {
        font-size: 12px;
    }
    
    .cookie-banner-btn {
        padding: 10px 12px;
        font-size: 12px;
    }
}

.scroll-to-top:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 186, 181, 0.4);
    background: linear-gradient(135deg, rgba(10, 138, 133, 0.7) 0%, rgba(107, 197, 192, 0.7) 100%);
    border-radius: 50%;
}

.scroll-to-top:active {
    transform: scale(0.98) translateY(0);
    border-radius: 50%;
}

.scroll-to-top svg {
    color: var(--white);
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 18px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    background: rgba(10, 186, 181, 0.05);
}

.contact-link:last-child {
    margin-bottom: 0;
}

.contact-link:hover {
    color: var(--primary-color);
    background: rgba(10, 186, 181, 0.1);
    border-color: rgba(10, 186, 181, 0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(10, 186, 181, 0.15);
}

.contact-link:active {
    transform: translateX(5px) scale(0.98);
}

.contact-link span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.contact-link:hover span {
    color: var(--primary-color);
}

.contact-link svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-link:hover svg {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Блок описания команды */
.team-description-section {
    padding: 130px 0 30px;
    background: transparent;
}

.team-description-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(10, 186, 181, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.team-description-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.1;
}

.team-description-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
}

.team-description-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.team-description-text {
    font-size: 19px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
}

/* Главная секция */
.hero-section {
    padding: 30px 0;
    background: transparent;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-image {
    flex: 0 0 40%;
}

.hero-photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 42px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.25;
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-project {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.6;
    padding: 15px 20px;
    background: rgba(10, 186, 181, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 15px;
}

.hero-specializations {
    list-style: none;
    margin-bottom: 20px;
}

.hero-specializations li {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.hero-specializations li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.hero-approach {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-button {
    margin-top: 30px;
    text-align: center;
}

/* Обо мне */
.about-section {
    padding: 30px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(240, 253, 252, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70px;
}

.feature-icon img,
.feature-icon svg {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.feature-icon img:hover,
.feature-icon svg:hover {
    transform: scale(1.1);
}

.feature-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-description {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Коучинг */
.coaching-section {
    padding: 30px 0;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 26px;
    font-weight: 400;
    color: var(--text-color);
}

.accordion-container {
    max-width: 1200px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 2px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 25px 20px;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10, 186, 181, 0.1), transparent);
    transition: left 0.5s ease;
}

.accordion-header:hover {
    background-color: var(--light-bg);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 186, 181, 0.15);
}

.accordion-header:hover::before {
    left: 100%;
}

.accordion-header:hover .accordion-plus svg,
.accordion-header:hover .accordion-close svg {
    transform: scale(1.1);
    stroke-width: 2.5;
}

.accordion-title {
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    color: var(--text-color);
}

.accordion-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-plus,
.accordion-close {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.accordion-plus svg,
.accordion-close svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-close {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(45deg) scale(0.8);
}

.accordion-header.active .accordion-plus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-45deg) scale(0.8);
}

.accordion-header.active .accordion-close {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    background: var(--white);
    opacity: 0;
}

.accordion-content.active {
    max-height: 500px;
    opacity: 1;
}

/* Улучшенная поддержка мобильных устройств для аккордеона */
@media screen and (max-width: 768px) {
    .accordion-content.active {
        max-height: 800px; /* Увеличиваем высоту для мобильных устройств */
    }
    
    .accordion-header {
        padding: 20px 15px;
        min-height: 60px; /* Увеличиваем область клика */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .accordion-header:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(10, 186, 181, 0.1);
    }
    
    .accordion-title {
        font-size: 16px;
        line-height: 1.4;
}

.accordion-text {
        padding: 20px 15px 25px;
        transition: all 0.3s ease;
}

.accordion-text p {
        font-size: 14px;
        line-height: 1.6;
    }
}

.accordion-text {
    padding: 25px 20px 30px;
}

.accordion-text p {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.accordion-text p:last-child {
    margin-bottom: 0;
}

/* Секция призыва к действию */
.cta-section {
    padding: 30px 0;
    background: transparent;
}

.cta-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(0, 206, 209, 0.15);
    box-shadow: 0 20px 40px rgba(0, 206, 209, 0.1), 0 0 0 1px rgba(87, 51, 251, 0.1);
}

.cta-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
}

.cta-quote {
    font-size: 18px;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.6;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 160px;
    height: 48px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 206, 209, 0.4);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.4);
    white-space: nowrap;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.9) 0%, rgba(129, 216, 208, 0.8) 100%);
    color: var(--white);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    color: var(--text-color);
    border-color: rgba(0, 206, 209, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Секция услуг */
.services-section {
    padding: 30px 0;
    background: transparent;
}

.services-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(10, 186, 181, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #81d8d0, var(--primary-color));
    border-radius: 20px 20px 0 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(10, 186, 181, 0.2);
}

.service-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon svg,
.service-icon img {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg,
.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

/* Стоимость */
.pricing-section {
    padding: 30px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-item {
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--white);
    transition: all 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.pricing-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-color);
    flex: 1;
}

.pricing-price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.pricing-price {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-period {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin-top: 2px;
}

.pricing-divider {
    border-top: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.pricing-description p {
    font-size: 15px;
    font-weight: 400;
    color: #6c757d;
    margin-bottom: 10px;
}

/* Кнопка отзывов */
.reviews-section {
    padding: 30px 0;
}

.reviews-button {
    text-align: center;
}

/* Контакты */
.contact-section {
    padding: 30px 0;
    background-color: var(--primary-color);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    color: var(--white);
    transform: scale(1.15) translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Специальные стили для изображений в социальных иконках */
.social-icon img {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    /* Исправление для iOS Safari - убираем красный цвет */
    -webkit-filter: none;
    filter: none;
}

.social-icon:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
    -webkit-filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}

/* Стили для социальных иконок в префутере */
.social-icon img[src*="telegram.svg"] {
    filter: brightness(0);
    -webkit-filter: brightness(0);
}

.social-icon img[src*="dzen.svg"] {
    filter: none;
    -webkit-filter: none;
}

.social-icon:hover img[src*="telegram.svg"] {
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
    -webkit-filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}

.social-icon:hover img[src*="dzen.svg"] {
    filter: invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
    -webkit-filter: invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}

.contact-details {
    margin-bottom: 20px;
}

.contact-details p {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 15px;
}

.contact-details a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-details a:hover {
    opacity: 0.8;
}

.disclaimer {
    margin-bottom: 30px;
}

.disclaimer p {
    color: var(--white);
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.contact-button-container {
    text-align: center;
}



.alert {
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    border: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 26px;
    font-weight: 400;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(10, 186, 181, 0.25);
}

.form-submit-container {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.form-submit {
    margin: 0;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    color: var(--white);
}

.contact-details h3,
.social-links h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-details a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-details a:hover {
    opacity: 0.8;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

/* Футер */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 45px 0 30px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer-left {
    text-align: left;
    padding-left: 0;
}

.footer-logo {
    margin-left: 0;
    margin-bottom: 20px;
    max-height: 60px;
    transition: transform 0.3s ease;
}

.footer-center {
    text-align: center;
}



.footer-logo:hover {
    transform: scale(1.05);
}

.footer-text {
    color: rgba(129, 216, 208, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-copyright {
    margin-top: 20px;
    padding-top: 0;
}

.footer-copyright-text {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-tagline {
    color: rgba(129, 216, 208, 0.8);
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}

.footer-right {
    text-align: right;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

/* Унифицированные стили кнопок */
.btn,
.btn-leave-request,
.btn-telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 160px;
    height: 48px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 206, 209, 0.4);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.4);
    white-space: nowrap;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.9) 0%, rgba(129, 216, 208, 0.8) 100%);
    color: var(--white);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.btn::before,
.btn-leave-request::before,
.btn-telegram::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover,
.btn-leave-request:hover,
.btn-telegram:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    color: var(--text-color);
    border-color: rgba(0, 206, 209, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:hover::before,
.btn-leave-request:hover::before,
.btn-telegram:hover::before {
    opacity: 1;
}

/* Основная кнопка */
.btn-primary {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.9) 0%, rgba(129, 216, 208, 0.8) 100%);
    color: var(--white);
    border: 1px solid rgba(0, 206, 209, 0.4);
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.4);
}

.btn-primary::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    color: var(--text-color);
    border-color: rgba(0, 206, 209, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Кнопка с обводкой */
.btn-outline {
    /* Наследует стили от базового .btn */
}

/* Кнопка "Оставить заявку" */
.btn-leave-request {
    /* Наследует стили от базового .btn */
}

/* Кнопка Telegram */
.btn-telegram {
    /* Наследует стили от базового .btn */
}

/* Стили для иконок в кнопках */
.btn svg,
.btn-leave-request svg,
.btn-telegram svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn:hover svg,
.btn-leave-request:hover svg,
.btn-telegram:hover svg {
    transform: scale(1.1);
}

.btn-social {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--white);
    padding: 8px 20px;
    font-size: 14px;
}

.btn-social:hover {
    background-color: transparent;
    color: var(--white);
}

/* Модальное окно */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.1) 0%, rgba(129, 216, 208, 0.1) 100%);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.modal-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 186, 181, 0.2);
    border-radius: 25px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 25px 50px rgba(10, 186, 181, 0.15),
        0 0 0 1px rgba(10, 186, 181, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: scale(0.7) translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 40px 25px;
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.05) 0%, rgba(129, 216, 208, 0.05) 100%);
    border-bottom: 1px solid rgba(10, 186, 181, 0.1);
    border-radius: 25px 25px 0 0;
    position: relative;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    text-align: center;
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    font-size: 20px;
    color: var(--white);
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 20px;
    box-shadow: 0 4px 12px rgba(10, 186, 181, 0.3);
    animation: fadeInUp 0.6s ease 0.3s both;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(10, 186, 181, 0.4);
}

.modal-close:active {
    transform: rotate(90deg) scale(0.95);
}

.modal-body {
    padding: 35px 40px 40px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

/* Стили для формы в модальном окне */
.modal-body .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Анимация полей формы с задержкой */
.modal-body .form-group:nth-child(1) .form-control {
    --delay: 0.1s;
}

.modal-body .form-group:nth-child(2) .form-control {
    --delay: 0.2s;
}

.modal-body .form-group:nth-child(3) .form-control {
    --delay: 0.3s;
}

.modal-body .form-group:nth-child(4) .form-control {
    --delay: 0.4s;
}

.modal-body .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal-body .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-body .form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 5px;
}

.modal-body .form-control {
    padding: 16px 20px;
    border: 2px solid rgba(10, 186, 181, 0.2);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-color);
    backdrop-filter: blur(10px);
    position: relative;
    animation: fadeInUp 0.6s ease calc(0.5s + var(--delay, 0s)) both;
}

.modal-body .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 4px rgba(10, 186, 181, 0.1),
        0 4px 12px rgba(10, 186, 181, 0.15);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
}

.modal-body .form-control:hover {
    border-color: rgba(10, 186, 181, 0.4);
    transform: translateY(-1px);
}

.modal-body .form-control::placeholder {
    color: #adb5bd;
}

.modal-body .form-submit-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.modal-body .btn {
    min-width: 160px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.modal-body .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    box-shadow: 
        0 6px 20px rgba(10, 186, 181, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease 0.8s both;
}

.modal-body .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.modal-body .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(10, 186, 181, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.modal-body .btn-primary:hover::before {
    left: 100%;
}

.modal-body .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 15px rgba(10, 186, 181, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Стили для чекбокса в модальном окне */
.modal-body .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
}

.modal-body .form-checkbox input[type="checkbox"] {
    display: none;
}

.modal-body .form-checkbox .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(10, 186, 181, 0.3);
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 2px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease 0.7s both;
}

.modal-body .form-checkbox input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(10, 186, 181, 0.3);
}

.modal-body .form-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.modal-body .form-checkbox a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.modal-body .form-checkbox a:hover {
    border-bottom-color: var(--primary-color);
}

/* Стили для алертов в модальном окне */
.modal-body .alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid;
    position: relative;
    animation: slideInDown 0.5s ease both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-body .alert-success {
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.1) 0%, rgba(129, 216, 208, 0.1) 100%);
    border-color: var(--primary-color);
    color: #0a8a85;
    box-shadow: 0 4px 12px rgba(10, 186, 181, 0.15);
}

.modal-body .alert-error,
.modal-body .alert-danger {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-color: #dc3545;
    color: #721c24;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
}

.modal-body .alert-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 235, 59, 0.1) 100%);
    border-color: #ffc107;
    color: #856404;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.15);
}

/* Стили для состояния успеха в модальном окне */
.modal-success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.6s ease both;
}

.modal-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.3);
}

.modal-success-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.modal-success-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    animation: fadeInUp 0.6s ease 0.4s both;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Красивый алерт уведомление */
.alert-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.alert-notification.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.alert-notification-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(10, 186, 181, 0.2);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 
        0 20px 40px rgba(10, 186, 181, 0.15),
        0 0 0 1px rgba(10, 186, 181, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 320px;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.alert-notification-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

.alert-notification-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

/* Стили для алерта с ошибкой */
.alert-notification.error .alert-notification-icon {
    background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
}

.alert-notification.error .alert-notification-title {
    background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.alert-notification.error .alert-notification-content::before {
    background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 100%);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.alert-notification-text {
    flex: 1;
}

.alert-notification-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.alert-notification-message {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Анимация появления */
.alert-notification.show .alert-notification-content {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Адаптивность для алерта */
@media screen and (max-width: 768px) {
    .alert-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .alert-notification.show {
        transform: translateY(0);
    }
    
    .alert-notification-content {
        min-width: auto;
        max-width: none;
    }
    
    .alert-notification.show .alert-notification-content {
        animation: slideInDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes slideInDown {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

/* Адаптивность */
@media screen and (min-width: 1200px) {
    .features-grid {
        max-width: 1200px;
        gap: 40px;
    }
    
    .feature-item {
        padding: 30px;
    }
    
    .feature-title {
        font-size: 24px;
    }
    
    .feature-description {
        font-size: 18px;
    }
    
    .about-section {
        padding: 30px 0;
    }
}

@media screen and (max-width: 980px) {
    .navbar {
        position: relative;
    }
    
    .team-description-section {
        padding: 100px 0 30px;
    }
    
    .team-description-content {
        padding: 30px 15px;
        margin: 0 15px;
    }
    
    .team-description-title {
        font-size: 30px;
    }
    
    .team-description-text {
        font-size: 17px;
    }
    
    .hero-section {
        padding: 30px 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-image {
        flex: none;
        max-width: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-item {
        padding: 25px 20px;
    }
    
    .feature-title {
        font-size: 22px;
    }
    
    .feature-description {
        font-size: 17px;
    }
    
    .about-section {
        padding: 30px 0;
    }
    
    .cta-section {
        padding: 30px 0;
    }
    
    .cta-content {
        padding: 40px 30px;
        border-radius: 15px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-quote {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .cta-button {
        min-width: 140px;
        height: 44px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-icons {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .contact-details {
        margin-bottom: 15px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .disclaimer {
        margin-bottom: 25px;
    }
    
    .disclaimer p {
        font-size: 12px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
        max-height: 95vh;
        transform: scale(0.8) translateY(20px);
    }
    
    .modal-overlay.active .modal-content {
        transform: scale(1) translateY(0);
    }
    
    .modal-header {
        padding: 25px 20px 20px;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-close {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .modal-body {
        padding: 25px 20px 30px;
    }
    
    .modal-body .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-body .form {
        gap: 18px;
    }
    
    .modal-body .form-control {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .modal-body .btn {
        min-width: 140px;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .modal-body .form-checkbox {
        font-size: 13px;
        gap: 10px;
    }
    
    .modal-body .form-checkbox .checkmark {
        width: 20px;
        height: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

/* Дополнительная адаптивность для очень маленьких экранов */
@media screen and (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 10px;
        max-height: 98vh;
        transform: scale(0.75) translateY(30px);
    }
    
    .modal-overlay.active .modal-content {
        transform: scale(1) translateY(0);
    }
    
    .modal-header {
        padding: 20px 15px 15px;
    }
    
    .modal-title {
        font-size: 22px;
    }
    
    .modal-close {
        width: 30px;
        height: 30px;
        font-size: 16px;
        margin-left: 15px;
    }
    
    .modal-body {
        padding: 20px 15px 25px;
    }
    
    .modal-body .form {
        gap: 15px;
    }
    
    .modal-body .form-control {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .modal-body .btn {
        min-width: 120px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .modal-body .form-checkbox {
        font-size: 12px;
        gap: 8px;
    }
    
    .modal-body .form-checkbox .checkmark {
        width: 18px;
        height: 18px;
    }
    
    .modal-body .alert {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
    }
    
    .footer-copyright {
        margin-top: 15px;
        padding-top: 0;
    }
    
    .footer-copyright-text {
        font-size: 13px;
    }
    
    .footer-tagline {
        font-size: 12px;
    }
    
    .navbar-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .navbar-menu {
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .navbar-menu.active {
        display: block !important;
        opacity: 1;
        transform: translateY(0);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        padding: 15px 20px;
        z-index: 1000;
        border-radius: 0 0 12px 12px;
        margin-top: 0;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(10, 186, 181, 0.1);
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-item {
        padding: 0;
    }
    
    .navbar-nav .nav-link {
        display: block;
        padding: 18px 20px;
        font-size: 16px;
        font-weight: 500;
        color: var(--text-color);
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin-bottom: 8px;
        position: relative;
        overflow: hidden;
        border: 1px solid transparent;
        box-shadow: 0 2px 8px rgba(10, 186, 181, 0.1);
    }
    
    .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(10, 186, 181, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: linear-gradient(135deg, var(--light-bg) 0%, rgba(129, 216, 208, 0.1) 100%);
        color: var(--primary-color);
        transform: translateX(8px) scale(1.02);
        border-color: var(--secondary-color);
        box-shadow: 0 4px 15px rgba(10, 186, 181, 0.2);
    }
    
    .navbar-nav .nav-link:hover::before {
        left: 100%;
    }
    
    .navbar-nav .nav-link:active {
        transform: translateX(8px) scale(0.98);
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: var(--white);
        box-shadow: 0 2px 8px rgba(10, 186, 181, 0.3);
        border-color: var(--primary-color);
    }
    
    .navbar-nav .nav-link.active {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: var(--white);
        border-color: var(--primary-color);
        box-shadow: 0 4px 15px rgba(10, 186, 181, 0.3);
        transform: translateX(5px);
    }
    
    .navbar-button {
        display: none;
    }
    
    .logo-svg {
        width: 270px;
        height: 96px;
    }
    
    .logo-svg text {
        font-size: 30px !important;
    }
    
    .logo-svg text:last-child {
        font-size: 15px !important;
    }
    
    .feature-icon {
        min-height: 65px;
    }
    
    .feature-icon img {
        width: 65px;
        height: 65px;
    }
    
    .feature-item {
        border-radius: 8px;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }
    
    .feature-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.12);
    }
}

/* Планшеты 769-1024px - исправление шапки */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        height: 80px;
        padding: 0 10px;
    }
    
    .navbar .container {
        padding: 0 10px;
        max-width: 100%;
        gap: 20px;
    }
    
    .navbar-brand img,
    .logo-svg {
        max-height: 60px;
    }
    
    .navbar-nav {
        gap: 10px;
    }
    
    .nav-item {
        padding: 0 8px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .navbar-button .btn-telegram {
        min-width: 120px;
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media screen and (max-width: 880px) and (min-width: 481px) {
    /* Исправление шапки для 480-880px */
    .navbar {
        height: 70px;
        padding: 0 5px;
    }
    
    .navbar .container {
        padding: 0 8px;
        max-width: 100%;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }
    
    .navbar-brand {
        flex-shrink: 0;
    }
    
    .navbar-brand img,
    .logo-svg {
        max-height: 45px;
        width: auto;
        max-width: 180px;
    }
    
    .navbar-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
    }
    
    .navbar-nav {
        gap: 3px;
        flex-wrap: nowrap;
    }
    
    .nav-item {
        padding: 0 4px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .navbar-button {
        flex-shrink: 0;
    }
    
    .navbar-button .btn-telegram {
        min-width: 90px;
        padding: 6px 10px;
        font-size: 12px;
        height: auto;
    }
}

@media screen and (max-width: 880px) {
    .container {
        padding: 0 15px;
    }
    
    .team-description-section {
        padding: 30px 0;
    }
    
    .cta-section {
        padding: 30px 0;
    }
    
    .cta-content {
        padding: 30px 20px;
        border-radius: 15px;
        margin: 0 10px;
    }
    
    .cta-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .cta-quote {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .cta-button {
        min-width: 140px;
        height: 44px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .team-description-content {
        padding: 25px 15px;
        margin: 0 10px;
        border-radius: 15px;
    }
    
    /* УМЕНЬШЕНИЕ ЗАГОЛОВКА "О НАШЕЙ КОМАНДЕ" ВДВОЕ */
    .team-description-title {
        font-size: 18px !important;
    }
    
    .team-description-text {
        font-size: 13px !important;
    }
    
    /* УВЕЛИЧЕНИЕ ФОТО НА 25% */
    .hero-image {
        max-width: 340px !important;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-project {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .btn,
    .btn-leave-request,
    .btn-telegram {
        min-width: 140px;
        height: 44px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .accordion-header {
        padding: 15px;
    }
    
    .accordion-title {
        font-size: 15px;
    }
    
    .features-grid {
        gap: 20px;
        margin: 0 10px;
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .feature-icon {
        min-height: 60px;
    }
    
    .feature-icon img {
        width: 60px;
        height: 60px;
    }
    
    .about-section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .floating-contact {
        right: 15px;
        bottom: 15px;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
    }
    
    .contact-links {
        right: -10px;
        min-width: 180px;
        padding: 15px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .floating-contact {
        right: 15px;
        bottom: 15px;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
    }
    
    .contact-links {
        right: -10px;
        min-width: 180px;
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .team-description-section {
        padding: 30px 0;
    }
    
    .cta-section {
        padding: 30px 0;
    }
    
    .cta-content {
        padding: 30px 20px;
        border-radius: 15px;
        margin: 0 10px;
    }
    
    .cta-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .cta-quote {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .cta-button {
        min-width: 140px;
        height: 44px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .team-description-content {
        padding: 25px 15px;
        margin: 0 10px;
        border-radius: 15px;
    }
    
    /* УМЕНЬШЕНИЕ ЗАГОЛОВКА "О НАШЕЙ КОМАНДЕ" ВДВОЕ */
    .team-description-title {
        font-size: 18px !important;
    }
    
    .team-description-text {
        font-size: 13px !important;
    }
    
    /* УВЕЛИЧЕНИЕ ФОТО НА 25% */
    .hero-image {
        max-width: 340px !important;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-project {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .btn,
    .btn-leave-request,
    .btn-telegram {
        min-width: 140px;
        height: 44px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .accordion-header {
        padding: 15px;
    }
    
    .accordion-title {
        font-size: 15px;
    }
    
    .features-grid {
        gap: 20px;
        margin: 0 10px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .feature-icon {
        min-height: 60px;
    }
    
    .feature-icon img {
        width: 60px;
        height: 60px;
    }
    
    .about-section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Плавные переходы */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Скроллбар */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0a8a85;
}

/* Фокус для доступности */
.btn:focus,
.form-control:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.nav-link:focus {
    outline: none;
}

/* Страница оферты */
.oferta-section {
    padding: 120px 0 60px;
    background: transparent;
}

.oferta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(10, 186, 181, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.oferta-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.oferta-text {
    color: var(--text-color);
    line-height: 1.7;
}

.oferta-text h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(10, 186, 181, 0.2);
}

.oferta-text h2:first-child {
    margin-top: 0;
}

.oferta-text p {
    margin-bottom: 15px;
    font-size: 16px;
    text-align: justify;
}

.oferta-text ul {
    margin: 15px 0 15px 20px;
    padding-left: 0;
}

.oferta-text li {
    margin-bottom: 8px;
    font-size: 16px;
}

.oferta-text strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Адаптивность для оферты */
@media screen and (max-width: 980px) {
    .oferta-content {
        padding: 30px 25px;
        margin: 0 20px;
    }
    
    .oferta-title {
        font-size: 28px;
    }
    
    .oferta-text h2 {
        font-size: 22px;
    }
    
    .oferta-text p,
    .oferta-text li {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .oferta-section {
        padding: 50px 0 40px;
    }
    
    .oferta-content {
        padding: 25px 20px;
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .oferta-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .oferta-text h2 {
        font-size: 20px;
        margin: 25px 0 15px 0;
    }
    
    .oferta-text p,
    .oferta-text li {
        font-size: 14px;
        text-align: left;
    }
    
    .oferta-text ul {
        margin-left: 15px;
    }
}

/* Стили для формы анкеты в секции оферты */
.oferta-section .anketa-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.oferta-section .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.oferta-section .form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.oferta-section .form-label::after {
    content: ' *';
    color: #ff4444;
    font-weight: 700;
}

.oferta-section .form-label-optional::after {
    content: '';
}

.oferta-section .form-input,
.oferta-section .form-textarea,
.oferta-section .form-select {
    padding: 15px 20px;
    border: 1px solid rgba(0, 206, 209, 0.15);
    border-radius: 15px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: var(--text-color);
}

.oferta-section .form-input:focus,
.oferta-section .form-textarea:focus,
.oferta-section .form-select:focus {
    outline: none;
    border-color: rgba(0, 206, 209, 0.4);
    box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.oferta-section .form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Стили для радио кнопок */
.oferta-section .form-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.oferta-section .form-radio {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-color);
    position: relative;
}

.oferta-section .form-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.oferta-section .radio-mark {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0, 206, 209, 0.15);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.oferta-section .form-radio input[type="radio"]:checked + .radio-mark {
    background: #00CED1;
    border-color: rgba(0, 206, 209, 0.4);
}

.oferta-section .form-radio input[type="radio"]:checked + .radio-mark::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.oferta-section .form-radio:hover .radio-mark {
    border-color: rgba(0, 206, 209, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

/* Стили для чекбоксов */
.oferta-section .form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.oferta-section .form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-color);
    position: relative;
}

.oferta-section .form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.oferta-section .checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0, 206, 209, 0.15);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.oferta-section .form-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #00CED1;
    border-color: rgba(0, 206, 209, 0.4);
}

.oferta-section .form-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.oferta-section .form-checkbox:hover .checkmark {
    border-color: rgba(0, 206, 209, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

/* Стили для бегунка возраста */
.oferta-section .age-slider-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.oferta-section .age-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(0, 206, 209, 0.2);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.oferta-section .age-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #00CED1;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 206, 209, 0.3);
    transition: all 0.3s ease;
}

.oferta-section .age-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 206, 209, 0.4);
}

.oferta-section .age-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #00CED1;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 206, 209, 0.3);
    transition: all 0.3s ease;
}

.oferta-section .age-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 206, 209, 0.4);
}

.oferta-section .age-display {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 206, 209, 0.15);
    border-radius: 15px;
    padding: 12px 20px;
    display: inline-block;
    margin: 0 auto;
}

.oferta-section .age-value {
    color: #00CED1;
    font-weight: 700;
}

/* Стили для телефона */
.oferta-section .phone-input-group {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 206, 209, 0.15);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.oferta-section .phone-country {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 206, 209, 0.1);
    border-right: 1px solid rgba(0, 206, 209, 0.15);
}

.oferta-section .phone-prefix {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.oferta-section .phone-input {
    border: none;
    border-radius: 0;
    background: transparent;
    flex: 1;
    padding: 15px 20px;
}

.oferta-section .phone-input:focus {
    box-shadow: none;
    background: transparent;
}

/* Стили для телеграма */
.oferta-section .telegram-input-group {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 206, 209, 0.15);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.oferta-section .telegram-prefix {
    padding: 15px 20px;
    background: rgba(0, 206, 209, 0.1);
    border-right: 1px solid rgba(0, 206, 209, 0.15);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.oferta-section .telegram-input {
    border: none;
    border-radius: 0;
    background: transparent;
    flex: 1;
    padding: 15px 20px;
}

.oferta-section .telegram-input:focus {
    box-shadow: none;
    background: transparent;
}

.oferta-section .form-hint {
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.6;
    margin-top: 5px;
}

/* Стили для полной ширины */
.oferta-section .form-group-fullwidth {
    width: 100%;
}

.oferta-section .form-textarea-fullwidth {
    width: 100%;
    max-width: 100%;
}

/* Стили для textarea с счетчиком */
.oferta-section .textarea-container {
    position: relative;
    width: 100%;
}

.oferta-section .char-counter {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.6;
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 6px;
    border-radius: 4px;
}

.oferta-section .form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 160px;
    height: 48px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 206, 209, 0.4);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.4);
    white-space: nowrap;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.9) 0%, rgba(129, 216, 208, 0.8) 100%);
    color: var(--white);
    backdrop-filter: blur(10px);
    overflow: hidden;
    margin-top: 20px;
    width: auto;
    max-width: 160px;
}

.oferta-section .form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.oferta-section .form-submit:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    color: var(--text-color);
    border-color: rgba(0, 206, 209, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.oferta-section .form-submit:hover::before {
    opacity: 1;
}

.oferta-section .form-submit:active {
    transform: translateY(-1px);
}

.oferta-section .form-checkbox a {
    color: #00CED1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.oferta-section .form-checkbox a:hover {
    border-bottom-color: #00CED1;
}

/* Адаптивные стили для формы анкеты */
@media screen and (max-width: 980px) {
    .oferta-section .anketa-form {
        gap: 25px;
    }
}

@media screen and (max-width: 480px) {
    .oferta-section .anketa-form {
        gap: 20px;
    }
    
    .oferta-section .form-input,
    .oferta-section .form-textarea,
    .oferta-section .form-select {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .oferta-section .form-submit {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* Печать */
@media print {
    .navbar,
    .floating-contact,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-section {
        padding: 30px 0;
    }
    
    .oferta-content {
        box-shadow: none;
        border: 1px solid #ccc;
        background: white;
    }
}

/* Стили для обязательного чекбокса политики */
.form-checkbox .form-label-required::after {
    content: ' *';
    color: #e74c3c;
    font-weight: 500;
}

/* Исправления для iOS Safari */
@supports (-webkit-touch-callout: none) {
    /* Исправление для iOS Safari - стили для социальных иконок */
    .social-icon img[src*="telegram.svg"] {
        -webkit-filter: brightness(0);
        filter: brightness(0);
    }
    
    .social-icon img[src*="dzen.svg"] {
        -webkit-filter: none;
        filter: none;
    }
    
    .social-icon:hover img[src*="telegram.svg"] {
        -webkit-filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
        filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
    }
    
    .social-icon:hover img[src*="dzen.svg"] {
        -webkit-filter: invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
        filter: invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
    }
    
    /* Исправление для iOS Safari - backdrop-filter */
    .navbar.scrolled {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
    
    /* Исправление для iOS Safari - transform3d для GPU ускорения */
    .feature-icon-img,
    .service-icon-img {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    .feature-icon-img:hover,
    .service-icon-img:hover {
        -webkit-transform: translate3d(0, -8px, 0) scale(1.15);
        transform: translate3d(0, -8px, 0) scale(1.15);
    }
    
    /* Исправление для iOS Safari - smooth scrolling */
    html {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Исправление для iOS Safari - предотвращение масштабирования при двойном тапе */
    .btn,
    .nav-link,
    .accordion-header {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

/* Дополнительные исправления для iOS Safari */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
    /* Исправление для Retina дисплеев iOS */
    .social-icon img {
        -webkit-filter: brightness(0) invert(1);
        filter: brightness(0) invert(1);
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .feature-icon-img,
    .service-icon-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Стили для модального окна отзывов */
#reviewsModal .modal-content {
    max-width: 95vw;
    max-height: 95vh;
    width: 420px;
    height: 750px;
    background: linear-gradient(145deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    border-radius: 25px;
    box-shadow: 0 30px 100px rgba(10, 186, 181, 0.3), 0 0 0 1px rgba(10, 186, 181, 0.2);
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    position: relative;
}

#reviewsModal.active .modal-content {
    transform: scale(1);
}

#reviewsModal .modal-header {
    background: linear-gradient(145deg, #1a2332 0%, #0f1419 100%);
    border-bottom: 1px solid rgba(10, 186, 181, 0.3);
    padding: 20px 25px;
    position: relative;
}

#reviewsModal .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

#reviewsModal .modal-title {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(10, 186, 181, 0.5);
    position: relative;
    z-index: 1;
}

#reviewsModal .modal-close {
    background: linear-gradient(145deg, #1a2332 0%, #0f1419 100%);
    border: 2px solid rgba(10, 186, 181, 0.4);
    color: var(--primary-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(10, 186, 181, 0.2);
}

#reviewsModal .modal-close:hover {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scale(1.1);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 0 25px rgba(10, 186, 181, 0.6);
}

#reviewsModal .modal-body {
    padding: 0;
    height: calc(100% - 70px);
}

/* Карусель отзывов */
.reviews-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.reviews-container {
    position: relative;
    width: 100%;
    height: 75%;
    overflow: hidden;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.review-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Медиа-контент */
.review-media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #0a0f14 0%, #1a2332 100%);
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.review-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(10, 186, 181, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.review-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 1;
}

.review-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: linear-gradient(145deg, #0a0f14 0%, #1a2332 100%);
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 1;
}

.review-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #0a0f14 0%, #1a2332 100%);
    color: var(--primary-color);
    font-size: 16px;
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 1;
}

/* Контент отзыва */
.review-content {
    height: 25%;
    padding: 15px;
    background: linear-gradient(145deg, #1a2332 0%, #0f1419 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0 0 20px 20px;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.review-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(10, 186, 181, 0.3) 50%, transparent 100%);
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    text-shadow: 0 0 10px rgba(10, 186, 181, 0.3);
    position: relative;
    z-index: 1;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 16px;
    color: rgba(10, 186, 181, 0.3);
    transition: all 0.3s ease;
}

.star.filled {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(10, 186, 181, 0.6);
    transform: scale(1.1);
}

.review-text {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 10px;
    max-height: 60px;
}

.review-text p {
    font-size: 13px;
    line-height: 1.4;
    color: #b8c5d1;
    margin: 0;
    position: relative;
    z-index: 1;
}

.review-date {
    font-size: 11px;
    color: rgba(10, 186, 181, 0.6);
    text-align: right;
    position: relative;
    z-index: 1;
}

.review-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: #ffffff;
    border: 1px solid #e0e0e0;
    display: block;
    margin: 0 auto;
}

/* Стили для контента внутри слайдов */
.review-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

/* Навигация карусели */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(145deg, #1a2332 0%, #0f1419 100%);
    border: 2px solid rgba(10, 186, 181, 0.4);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(10, 186, 181, 0.2);
}

.carousel-nav:hover {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-50%) scale(1.1);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(10, 186, 181, 0.4);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

/* Индикаторы */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(10, 186, 181, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 186, 181, 0.2);
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(10, 186, 181, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(10, 186, 181, 0.5);
}

.indicator:hover {
    background: rgba(10, 186, 181, 0.6);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Адаптивность */
@media screen and (max-width: 480px) {
    #reviewsModal .modal-content {
        width: 95vw;
        height: 85vh;
        max-width: 380px;
        max-height: 650px;
    }
    
    .review-media {
        height: 60%;
    }
    
    .review-content {
        height: 40%;
        padding: 15px;
    }
    
    .author-name {
        font-size: 16px;
    }
    
    .review-text p {
        font-size: 13px;
    }
    
    .carousel-nav {
        width: 35px;
        height: 35px;
    }
}
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

