/* Общие стили */
@font-face {
    font-family: 'Pobeda';
    src: url('/font/pobeda-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* для оптимизации загрузки */
}

@font-face {
    font-family: 'Pobeda';
    src: url('/font/pobeda-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h2, h1 {
    font-family: 'Pobeda', sans-serif;
    font-weight: 400; /* обычный */
}
body {
    font-family: "Nunito", sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.5;
}
 .fa, .fas, .far, .fal, .fab {
            font-family: 'Font Awesome 6 Free' !important;
            font-weight: 900;
        }
.triveda-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Секция 1 */
.triveda-section-1 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.triveda-section-1-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('/img/main.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
    border-radius: 30px;
}

.triveda-section-1-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 10%, rgba(255, 255, 255, 0.4) 30%, rgba(248, 249, 250, 0) 50%);
    z-index: 1;
}

.triveda-section-1-content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    align-items: flex-end;
}

.triveda-section-1-left {
    flex: 1;
    max-width: 60%;
}

.triveda-section-1-right {
    flex: 1;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 100px;
}

/* Плашка сверху */
.triveda-section-1-badge {
    display: inline-block;
    background: rgb(12 73 102 / 81%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 12px 24px;
    margin-bottom: 40px;
    border: 1px solid rgba(203, 175, 114, 0.2);
    animation: triveda-fade-up 0.8s ease-out;
}

.triveda-section-1-badge span {
    font-weight: 500;
    font-size: 16px;
    color: rgb(255, 255, 255);
}

/* Заголовок */
.triveda-section-1-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.2;
    color: rgb(12, 73, 102);
    margin-bottom: 24px;
    animation: triveda-fade-up 0.8s ease-out 0.1s both;
}

/* Подзаголовок */
.triveda-section-1-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 90%;
    animation: triveda-fade-up 0.8s ease-out 0.2s both;
}

/* Кнопка и подпись */
.triveda-section-1-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    animation: triveda-fade-up 0.8s ease-out 0.3s both;
}

.triveda-section-1-button {
    background-color: rgb(203, 175, 114);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(203, 175, 114, 0.3);
}

.triveda-section-1-button:hover {
    background-color: rgb(185, 158, 100);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(203, 175, 114, 0.4);
}

.triveda-section-1-button:active {
    transform: translateY(-1px);
}

.triveda-section-1-signature {
    max-width: 230px;
}

.triveda-section-1-signature span {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Стоимость */
.triveda-section-1-price {
    animation: triveda-fade-up 0.8s ease-out 0.4s both;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.triveda-section-1-price-old {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-right: 15px;
}

.triveda-section-1-price-new {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0c4966;
}

/* Плашки справа */
.triveda-section-1-card {
    background: rgb(255 255 255 / 55%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 15px;
    border: 1px solid rgba(203, 175, 114, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: triveda-fade-left 0.8s ease-out both;
}

.triveda-section-1-card:nth-child(1) {
    animation-delay: 0.1s;
}

.triveda-section-1-card:nth-child(2) {
    animation-delay: 0.2s;
}

.triveda-section-1-card:nth-child(3) {
    animation-delay: 0.3s;
}

.triveda-section-1-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(12, 73, 102, 0.1);
}

.triveda-section-1-card-content {
    display: flex;
    flex-direction: column;
  
}

.triveda-section-1-card-title {
    font-size: 20px;
    font-weight: 500;
    color: rgb(12, 73, 102);
}

.triveda-section-1-card-text {
    font-size: 15px;
    color: #4b4b4b;
    line-height: 1.5;
    font-weight: 300;
}
.h2-section {
        font-size: 60px !important;
    text-align: left !important;
}
/* Анимации */
@keyframes triveda-fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes triveda-fade-left {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Адаптивность */
@media (max-width: 1024px) {
    .triveda-section-1-title {
              font-size: 61px;
        text-align: center;
    }
    
    .triveda-section-1-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .triveda-section-1-left,
    .triveda-section-1-right {
        max-width: 100%;
    }
    
    .triveda-section-1-right {
        margin-top: 0;
    }
    
    .triveda-section-1-bg {
        width: 100%;
        opacity: 0.3;
    }
    
    .triveda-section-1-bg::before {
        background: linear-gradient(0deg, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0.8) 20%, rgba(248, 249, 250, 0.4) 40%, rgba(248, 249, 250, 0) 60%);
    }
    .triveda-section-1-price {
    animation: triveda-fade-up 0.8s ease-out 0.4s both;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 20px;
}
}

@media (max-width: 768px) {
    .triveda-section-1-price {
    animation: triveda-fade-up 0.8s ease-out 0.4s both;
    display: flex;
    gap: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
   
}

.h2-section {
    line-height: 1;
    font-size: 50px !important;
}
    .triveda-section-1 {
        padding: 100px 0 60px;
    }
    .triveda-header-logo {
            width: 140px !important;
    background-image: url(/img/logo/sb.webp) !important;
    }
    .triveda-section-1-title {
               font-size: 50px;
        text-align: left;
    }
    
    .triveda-section-1-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .triveda-section-1-signature {
        max-width: 100%;
    }
    
    .triveda-section-1-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .triveda-section-1-title {
        font-size: 40px;
    }
    
    .triveda-section-1-subtitle {
        font-size: 16px;
    }
    
    .triveda-section-1-button {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
    }
    
    .triveda-section-1-badge {
        padding: 10px 20px;
    }
}
/* Секция 2 */
.triveda-section-2 {
    position: relative;
    padding: 100px 0;
    background-color: #fff;
}

.triveda-section-2-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.2s forwards;
}

.triveda-section-2-main {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.triveda-section-2-left {
    flex: 1;
}

.triveda-section-2-right {
    flex: 0 0 380px;
        position: sticky;
    top: 100px;
}

/* Источник данных */
.triveda-section-2-source {
    text-align: right;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-20px);
    animation: triveda-fade-right 0.8s ease-out 0.3s forwards;
}

.triveda-section-2-source span {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Блоки секции 2 */
.triveda-section-2-block {
    background: rgba(248, 249, 250, 0.9);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(12, 73, 102, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out forwards;
}

.triveda-section-2-block:nth-child(2) {
    animation-delay: 0.4s;
}

.triveda-section-2-block-accent {
    background: rgba(12, 73, 102, 0.05);
    border: 1px solid rgba(203, 175, 114, 0.2);
}

/* Плашка блока */
.triveda-section-2-block-badge {
    display: inline-block;
    background: rgb(12, 73, 102);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 10px 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(12, 73, 102, 0.1);
}

.triveda-section-2-block-badge span {
    font-weight: 600;
    font-size: 16px;
    color: white;
}

/* Статистика */
.triveda-section-2-stats {
    margin-bottom: 20px;
}

.triveda-section-2-stat-item {
    margin-bottom: 20px;
}

.triveda-section-2-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 5px;
}

.triveda-section-2-stat-text {
    font-size: 16px;
    color: #555;
    line-height: 1.4;
}

.triveda-section-2-conclusion {
    padding-top: 20px;
    border-top: 1px solid rgba(12, 73, 102, 0.1);
}

.triveda-section-2-conclusion p {
    font-size: 17px;
    color: rgb(12, 73, 102);
    font-weight: 500;
}

/* Контент блока 2 */
.triveda-section-2-block-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgb(12, 73, 102);
    margin-bottom: 10px;
}

.triveda-section-2-block-subtitle {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Шаги */
.triveda-section-2-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.triveda-section-2-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.triveda-section-2-step-number {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: rgb(203, 175, 114);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.triveda-section-2-step-text {
    font-size: 15px;
    color: #555;
    line-height: 1.4;
    padding-top: 5px;
}

/* Видео контейнер */
.triveda-section-2-video-container {
    position: sticky;
    top: 100px;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.5s forwards;
}

.triveda-section-2-video-placeholder {
    width: 100%;
    max-width: 380px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(12, 73, 102, 0.15);
}

/* Видео плеер */
.triveda-video-player {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 177.78%; /* 9/16 соотношение */
    background: #000;
    border-radius: 30px;
    overflow: hidden;
}

.triveda-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.triveda-video-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
}

.triveda-video-sound-btn {
    width: 40px;
    height: 40px;
    background: rgba(12, 73, 102, 0.8);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.triveda-video-sound-btn:hover {
    background: rgba(12, 73, 102, 1);
    transform: scale(1.1);
}

.triveda-video-sound-btn svg {
    width: 20px;
    height: 20px;
}

.triveda-video-overlay {
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    padding: 0 15px;
    text-align: center;
    z-index: 10;
}

.triveda-video-overlay span {
    background: rgba(12, 73, 102, 0.8);
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* Анимация появления справа */
@keyframes triveda-fade-right {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Секция 3 */
.triveda-section-3 {
    position: relative;
    padding: 100px 0;
    background: rgba(12, 73, 102, 0.03);
    border-radius: 30px;
}

.section-3-puzzle {
    position: absolute;
    width: 10rem;
    right: 5%;
    top: -7%;
    opacity: 0;
    transform: rotate3d(1, 1, 1, 37deg) translateY(200px);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    will-change: transform, opacity;
}

.section-3-puzzle.animated {
    opacity: 1;
    transform: rotate3d(1, 1, 1, 37deg) translateY(0);
}

.triveda-section-3-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.2s forwards;
}

.triveda-section-3-main {
    display: flex;
    gap: 40px;
}

.triveda-section-3-column {
    flex: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out forwards;
}

.triveda-section-3-column:nth-child(1) {
    animation-delay: 0.3s;
}

.triveda-section-3-column:nth-child(2) {
    animation-delay: 0.5s;
}

/* Карточки секции 3 */
.triveda-section-3-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(12, 73, 102, 0.08);
    border: 1px solid rgba(12, 73, 102, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.triveda-section-3-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(12, 73, 102, 0.15);
}

.triveda-section-3-card-accent {
    background: rgba(12, 73, 102, 0.02);
    border: 1px solid rgba(203, 175, 114, 0.3);
}

.triveda-section-3-card-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(12, 73, 102, 0.1);
}

.triveda-section-3-card-title {
    font-size: 24px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 10px;
    line-height: 1.3;
}

.triveda-section-3-card-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
}

.triveda-section-3-card-body {
    padding: 25px 30px;
    flex-grow: 1;
}

/* Особенности в карточках */
.triveda-section-3-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.triveda-section-3-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.triveda-section-3-feature-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: rgb(203, 175, 114);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    margin-top: 2px;
}

.triveda-section-3-feature-text {
    font-size: 15px;
    color: #555;
    line-height: 1.4;
}

/* Футер карточки */
.triveda-section-3-card-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.triveda-section-3-button {
    background-color: rgb(203, 175, 114);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(203, 175, 114, 0.3);
}

.triveda-section-3-button:hover {
    background-color: rgb(185, 158, 100);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(203, 175, 114, 0.4);
}

.triveda-section-3-button-accent {
    background-color: rgb(12, 73, 102);
    box-shadow: 0 4px 15px rgba(12, 73, 102, 0.3);
}

.triveda-section-3-button-accent:hover {
    background-color: rgb(9, 58, 82);
    box-shadow: 0 6px 20px rgba(12, 73, 102, 0.4);
}

.triveda-section-3-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.triveda-section-3-price-old {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.triveda-section-3-price-new {
    font-size: 18px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    text-transform: uppercase;
}

/* Адаптивность для секций 2 и 3 */
@media (max-width: 1024px) {
    .triveda-section-2-title,
    .triveda-section-3-title {
        font-size: 36px;
    }
    
    .triveda-section-2-main {
        flex-direction: column;

        gap: 40px;
    }
    
    .triveda-section-2-right {
        flex: 1;
        width: 100%;
    }
    
    .triveda-section-2-video-container {
        position: relative;
        top: 0;
    }
    
    .triveda-section-2-video-placeholder {
        max-width: 100%;
    }
    
    .triveda-section-3-main {
        flex-direction: column;
        gap: 30px;
    }
    
    .triveda-section-3-card-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .triveda-section-2,
    .triveda-section-3 {
        padding: 70px 0;
    }
    
    .triveda-section-2-title,
    .triveda-section-3-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .triveda-section-2-block {
        padding: 25px;
    }
    
    .triveda-section-2-stat-number {
        font-size: 28px;
    }
    
    .triveda-section-3-card-header,
    .triveda-section-3-card-body,
    .triveda-section-3-card-footer {
        padding: 25px 20px;
    }
    
    .triveda-section-3-feature-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .triveda-section-2-title,
    .triveda-section-3-title {
        font-size: 26px;
    }
    
    .triveda-section-2-block {
        padding: 20px;
    }
    
    .triveda-section-2-stat-number {
        font-size: 24px;
    }
    
    .triveda-section-3-button {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .triveda-section-2-step-text,
    .triveda-section-2-stat-text {
        font-size: 14px;
    }
}
/* Секция 4 */
.triveda-section-4 {
    position: relative;
    padding: 100px 0;
    overflow-x: clip;
   
}

.triveda-section-4-title {
    text-align: center;
    font-size: 42px;
    max-width: 70%;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.2s forwards;
}

.triveda-section-4-main {
    display: flex;
    gap: 60px;
    align-items: flex-end;
}

.triveda-section-4-left {
    flex: 1;
}

.triveda-section-4-right {
    flex: 0 0 400px;
}

/* Вводная часть */
.triveda-section-4-intro {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Имя */
.triveda-section-4-name {
    text-align: center;
    margin-bottom: 30px;
}

.triveda-section-4-name span {
    font-size: 28px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    position: relative;
    display: inline-block;
}

.triveda-section-4-name span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgb(203, 175, 114);
    border-radius: 2px;
}

/* Цитата в стиле месседжера */
.triveda-section-4-quote {
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-end;
}

.triveda-section-4-quote-bubble {
    background: rgb(227 190 111);
    border-radius: 30px 2px 30px 30px;
    padding: 20px 25px;
    max-width: 75%;
    font-weight: 700;
    position: relative;
}

/* .triveda-section-4-quote-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid rgba(12, 73, 102, 0.08);
} */

.triveda-section-4-quote-bubble span {
    font-size: 18px;
    color: rgb(12, 73, 102);
    font-style: italic;
    line-height: 1.4;
        font-weight: 500;
}

/* Основной текст */
.triveda-section-4-text {
    margin-bottom: 30px;
    /* text-align: center; */
}

.triveda-section-4-text p {
    font-size: 18px;
    color: #555;
    /* margin-bottom: 15px; */
    line-height: 1.5;
}

.triveda-section-4-text p strong {
    color: rgb(12, 73, 102);
    font-weight: 600;
}

/* Кнопка "Узнать больше" */
.triveda-section-4-more {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.triveda-section-4-more-btn {
    background: transparent;
    border: none;
    color: rgb(203, 175, 114);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: underline;
    text-decoration-color: rgba(203, 175, 114, 0.3);
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.triveda-section-4-more-btn:hover {
    color: rgb(185, 158, 100);
    text-decoration-color: rgba(203, 175, 114, 0.6);
}

.triveda-section-4-more-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.triveda-section-4-more-btn.active .triveda-section-4-more-icon {
    transform: rotate(180deg);
}

/* Дополнительная информация */
.triveda-section-4-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    margin-bottom: 30px;
}

.triveda-section-4-details.active {
    max-height: 600px;
    transition: max-height 0.5s ease-in;
}

.triveda-section-4-details-content {
    padding-top: 20px;
    border-top: 1px solid rgba(12, 73, 102, 0.1);
}

.triveda-section-4-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(12, 73, 102, 0.03);
    border-radius: 10px;
}

.triveda-section-4-detail-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.triveda-section-4-detail-text {
    font-size: 15px;
    color: #555;
    line-height: 1.4;
    padding-top: 5px;
}

/* Кнопка и соцсети */
.triveda-section-4-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.triveda-section-4-button {
    background-color: rgb(12, 73, 102);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(203, 175, 114, 0.3);
    flex: 1;
    min-width: 250px;
}

.triveda-section-4-button:hover {
    background-color: rgb(185, 158, 100);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(203, 175, 114, 0.4);
}

.triveda-section-4-social {
    display: flex;
    gap: 15px;
}

.triveda-section-4-social-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(12, 73, 102, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.triveda-section-4-social-placeholder:hover {
    background: rgba(12, 73, 102, 0.15);
    transform: scale(1.1);
}

.triveda-section-4-social-placeholder span {
    font-size: 14px;
    font-weight: 600;
    color: rgb(12, 73, 102);
}

.triveda-section-4-social-placeholder[data-social="telegram"] {
    background: rgba(0, 136, 204, 0.1);
}

.triveda-section-4-social-placeholder[data-social="whatsapp"] {
    background: rgba(37, 211, 102, 0.1);
}

/* Подпись */
.triveda-section-4-signature {
    margin-top: 10px;
}

.triveda-section-4-signature span {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Фото и плашки */
.triveda-section-4-photo {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.triveda-section-4-photo-container {
    /* flex: 1; */
    margin-bottom: 30px;
}

/* .triveda-section-4-photo-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(12, 73, 102, 0.1), rgba(203, 175, 114, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
} */

/* .triveda-section-4-photo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1581091226825-c6ae73600b52?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
} */

.triveda-section-4-photo-placeholder span {
    position: relative;
    z-index: 2;
    font-size: 18px;
    color: rgb(12, 73, 102);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 30px;
}

/* Плашки под фото */
.triveda-section-4-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.triveda-section-4-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 15px 20px;
    border: 1px solid rgba(12, 73, 102, 0.1);
    transition: transform 0.3s ease;
}

.triveda-section-4-badge:hover {
    transform: translateY(-3px);
}

.triveda-section-4-badge-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.triveda-section-4-badge-text span {
    font-size: 16px;
    color: rgb(12, 73, 102);
    font-weight: 500;
    line-height: 1.3;
}

/* Секция 5 */
.triveda-section-5 {
    position: relative;
    padding: 100px 0;
    background: white;
    border-radius: 30px;
}

.triveda-section-5-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.2s forwards;
}

.triveda-section-5-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Карточки секции 5 */
.triveda-section-5-card {
    background: rgb(227 190 111);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(12, 73, 102, 0.08);
    border: 1px solid rgba(12, 73, 102, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out forwards;
    padding: 10px;
}

.triveda-section-5-card:nth-child(1) {
    animation-delay: 0.3s;
}

.triveda-section-5-card:nth-child(2) {
    animation-delay: 0.4s;
}

.triveda-section-5-card:nth-child(3) {
    animation-delay: 0.5s;
}

.triveda-section-5-card:nth-child(4) {
    animation-delay: 0.6s;
}

.triveda-section-5-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(12, 73, 102, 0.15);
}

.triveda-section-5-card-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid rgba(12, 73, 102, 0.1);
   
}

.triveda-section-5-card-title {
    font-size: 22px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    line-height: 1.3;
    text-transform: uppercase;
}

.triveda-section-5-card-body {
    padding: 15px 25px;
    flex-grow: 1;
    color: white;
    border-radius: 30px;
    background: #0c4966;
    overflow: hidden;
    border-bottom-left-radius: 0px;
    margin: 10px;
    margin-bottom: 0;
    border: 1px solid #0c496685;
}

.triveda-section-5-card-text {
    font-size: 16px;
    color: white;
    line-height: 1.5;
}

.triveda-section-5-card-footer {
    padding: 20px 25px 25px;
    border-top: 1px solid rgba(12, 73, 102, 0.05);
    background: rgb(255 255 255);
    border-radius: 30px;
    overflow: hidden;
    border-bottom-right-radius: 0px;
    margin: 10px;
    border: 1px solid rgb(220 167 10);
}

/* Комментарий эксперта */
.triveda-section-5-expert {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.triveda-section-5-expert-avatar {
    flex-shrink: 0;
}

.triveda-section-5-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgb(203, 175, 114);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
    overflow: hidden;
    border: 2px solid rgb(255 199 35)
}
.triveda-section-4-content {
    overflow: hidden;
}
.backgr {
    position: absolute;
    height: 160%;
    z-index: -1;
    top: -31%;
        max-width: 780px;
    object-fit: contain;
    right: -13%;
}

.triveda-section-5-avatar-placeholder img {
    width: 100%;
}

.triveda-section-5-expert-info {
       display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 10px;
}

.triveda-section-5-expert-name {
    /* margin-bottom: 8px; */
}

.triveda-section-5-expert-name span {
    font-size: 15px;
    font-weight: 600;
    color: #ad8616;
    line-height: 1.3;
}

.triveda-section-5-expert-comment span {
    font-size: 14px;
    color: #232323;
    line-height: 1.4;
    font-style: italic;
}

/* Адаптивность для секций 4 и 5 */
@media (max-width: 1024px) {
    .triveda-section-4-title,
    .triveda-section-5-title {
        font-size: 36px;
        max-width: none;
    }
    .backgr {
    /* position: relative; */
    top: -370px;
    margin: 0 auto;
    left: 0;
    /* width: 700px; */
    height: 560px;
    /* object-fit: cover; */
    right: 0;
    /* margin-top: 700px; */
}
    
    .triveda-section-4-main {
        flex-direction: column-reverse;
        gap: 10px;
    }
    
    .triveda-section-4-right {
        flex: 1;
        width: 100%;
    }
    
    .triveda-section-4-photo-placeholder {
        /* height: 300px; */
    }
    .triveda-section-4-photo {
    flex-direction: column-reverse;
    display: flex;
    align-items: center;
    margin-top: 250px;
    gap: 0;
    position: relative;
    /* top: 38px; */
}
    .triveda-section-4-badges {
        flex-direction: column;
        flex-wrap: wrap;
    }
    
    .triveda-section-4-badge {
        /* flex: 1; */
        min-width: 200px;
    }
    
    .triveda-section-5-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .triveda-section-4,
    .triveda-section-5 {
        padding: 70px 0;
    }
    
    .triveda-section-4-title,
    .triveda-section-5-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .triveda-section-4-quote-bubble {
        max-width: 100%;
    }
    
    .triveda-section-4-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .triveda-section-4-button {
        min-width: auto;
    }
    
    .triveda-section-4-social {
        justify-content: center;
    }
    
    .triveda-section-4-badges {
        flex-direction: column;
    }
    
    .triveda-section-4-badge {
        min-width: auto;
    }
    
    .triveda-section-5-card-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .triveda-section-4-title,
    .triveda-section-5-title {
        font-size: 26px;
    }
    
    .triveda-section-4-name span {
        font-size: 24px;
    }
    
    .triveda-section-4-quote-bubble span {
        font-size: 16px;
    }
    
    .triveda-section-4-text p {
        font-size: 16px;
    }
    
    .triveda-section-4-button {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .triveda-section-5-card-header,
    .triveda-section-5-card-body,
    .triveda-section-5-card-footer {
        padding: 20px;
    }
}
/* Секция 6 */
.triveda-section-6 {
    position: relative;
    padding: 100px 0;
    background-color: #fff;
}

.triveda-section-6-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.2s forwards;
}

.triveda-section-6-main {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.triveda-section-6-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.triveda-section-6-right {
    flex: 0 0 380px;
    position: sticky;
    top: 100px;
}

/* Блок с услугами */
.triveda-section-6-services {
    background: rgba(12, 73, 102, 0.02);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(12, 73, 102, 0.1);
}

.triveda-section-6-services-title {
    font-size: 24px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 25px;
    text-align: center;
}

.triveda-section-6-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.triveda-section-6-tag {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 12px 20px;
    border: 1px solid rgba(12, 73, 102, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.triveda-section-6-tag:hover {
    background: rgba(12, 73, 102, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(12, 73, 102, 0.1);
}

.triveda-section-6-tag.active {
    background: rgb(12, 73, 102);
    border-color: rgb(12, 73, 102);
    color: white;
}

.triveda-section-6-tag span {
    font-size: 14px;
    font-weight: 500;
    color: rgb(12, 73, 102);
    white-space: nowrap;
}

.triveda-section-6-tag.active span {
    color: white;
}

.triveda-section-6-tag-more {
    background: rgba(203, 175, 114, 0.15);
    border-color: rgba(203, 175, 114, 0.3);
    font-weight: 600;
}

.triveda-section-6-tag-more span {
    color: rgb(203, 175, 114);
}

.triveda-section-6-tag-more:hover {
    background: rgba(203, 175, 114, 0.25);
}

/* Форма для описания проблемы */
.triveda-section-6-form {
    background: rgb(12 73 102);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(203, 175, 114, 0.3);
}

.triveda-section-6-form-title {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
}

.triveda-section-6-form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.triveda-section-6-textarea-wrapper {
    position: relative;
}

.triveda-section-6-textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px 20px;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    color: rgb(12, 73, 102);
    background: white;
    border: 1px solid rgba(12, 73, 102, 0.2);
    border-radius: 30px;
    resize: vertical;
    transition: all 0.3s ease;
}

.triveda-section-6-textarea:focus {
    outline: none;
    border-color: rgb(203, 175, 114);
    box-shadow: 0 0 0 3px rgba(203, 175, 114, 0.1);
}

.triveda-section-6-textarea::placeholder {
    color: rgba(12, 73, 102, 0.5);
    font-style: italic;
}

.triveda-section-6-form-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.triveda-section-6-form-button {
    background-color: rgb(203, 175, 114);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(203, 175, 114, 0.3);
    flex: 1;
    min-width: 150px;
}

.triveda-section-6-form-button:hover {
    background-color: rgb(185, 158, 100);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(203, 175, 114, 0.4);
}

.triveda-section-6-form-signature {
    flex: 2;
    min-width: 200px;
}

.triveda-section-6-form-signature span {
    font-size: 14px;
    color: #ffffffa3;
    line-height: 1.4;
    font-style: italic;
}

.triveda-section-6-form-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.triveda-section-6-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(12, 73, 102, 0.08);
    color: rgb(12, 73, 102);
}

.triveda-section-6-social-icon:hover {
    transform: scale(1.1);
    background: rgba(12, 73, 102, 0.15);
}

.triveda-section-6-social-icon[data-messenger="telegram"] {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.triveda-section-6-social-icon[data-messenger="whatsapp"] {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.triveda-section-6-form-agreement {
    /* margin-top: 10px; */
}

/* Кастомный чекбокс */
.triveda-section-6-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.triveda-section-6-checkbox-input {
    display: none;
}

.triveda-section-6-checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgb(255 255 255 / 79%);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.triveda-section-6-checkbox-input:checked + .triveda-section-6-checkbox-custom {
  border: 2px solid rgb(255 255 255 / 79%);
  background-color: white;
}

.triveda-section-6-checkbox-input:checked + .triveda-section-6-checkbox-custom::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 5px;
    width: 6px;
    height: 10px;
    border: solid #0c4966;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.triveda-section-6-checkbox-text {
    font-size: 13px;
    color: #ffffffb5;
    line-height: 1.4;
}

/* Видео контейнер */
.triveda-section-6-video-container {
    position: sticky;
    top: 100px;
}

.triveda-section-6-video-placeholder {
    width: 100%;
    max-width: 380px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(12, 73, 102, 0.15);
}

/* Модальное окно */
.triveda-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 73, 102, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modalnew-active {
    display: flex !important;
    opacity: 1 !important;
    animation: triveda-modal-fade-in 0.3s 
ease;
}
.triveda-modal-overlay.active {
    display: flex;
    opacity: 1;
    animation: triveda-modal-fade-in 0.3s ease;
}

@keyframes triveda-modal-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.triveda-modal {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(12, 73, 102, 0.3);
    animation: triveda-modal-slide-up 0.4s ease;
}

@keyframes triveda-modal-slide-up {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.triveda-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(12, 73, 102, 0.1);
    background: rgba(12, 73, 102, 0.03);
}

.triveda-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin: 0;
}

.triveda-modal-service-name {
    background: rgba(12, 73, 102, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 18px;
}

.triveda-modal-close {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgb(12, 73, 102);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.triveda-modal-close:hover {
    background: rgba(12, 73, 102, 0.1);
}

.triveda-modal-body {
    padding: 30px;
}

.triveda-modal-message {
    margin-bottom: 30px;
}

.triveda-modal-text {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.triveda-modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.triveda-modal-input-wrapper {
    position: relative;
}

.triveda-modal-input {
    width: 100%;
    padding: 16px 20px;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    color: rgb(12, 73, 102);
    background: white;
    border: 1px solid rgba(12, 73, 102, 0.2);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.triveda-modal-input:focus {
    outline: none;
    border-color: rgb(203, 175, 114);
    box-shadow: 0 0 0 3px rgba(203, 175, 114, 0.1);
}

.triveda-modal-button {
    background-color: rgb(203, 175, 114);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(203, 175, 114, 0.3);
}

.triveda-modal-button:hover {
    background-color: rgb(185, 158, 100);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(203, 175, 114, 0.4);
}

.triveda-modal-alternative {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(12, 73, 102, 0.1);

}
.logo-modal {
    position: absolute;
    top: 10px;
    left: 25px;
    width: 100px;
}
.logo-modal img {
    width: 100%;
    height: 100%;
}
.triveda-modal-alternative span {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 15px;
}

.triveda-modal-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.triveda-modal-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(12, 73, 102, 0.08);
    color: rgb(12, 73, 102);
}

.triveda-modal-social-icon:hover {
    transform: scale(1.1);
}

.triveda-modal-social-icon[data-messenger="telegram"] {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.triveda-modal-social-icon[data-messenger="whatsapp"] {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.triveda-modal-agreement {
    margin-top: 20px;
}

.triveda-modal-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.triveda-modal-checkbox-input {
    display: none;
}

.triveda-modal-checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(12, 73, 102, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.triveda-modal-checkbox-input:checked + .triveda-modal-checkbox-custom {
    background-color: rgb(12, 73, 102);
    border-color: rgb(12, 73, 102);
}

.triveda-modal-checkbox-input:checked + .triveda-modal-checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.triveda-modal-checkbox-text {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Адаптивность для секции 6 */
@media (max-width: 1024px) {
    .triveda-section-6-title {
        font-size: 36px;
    }
    
    .triveda-section-6-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .triveda-section-6-right {
        flex: 1;
        max-width: 100%;
    }
    
    .triveda-section-6-video-container {
        position: relative;
        top: 0;
    }
    
    .triveda-section-6-video-placeholder {
        max-width: 100%;
    }
    
    .triveda-section-6-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .triveda-section-6-form-signature {
        text-align: center;
    }
    
    .triveda-section-6-form-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .triveda-section-6 {
        padding: 70px 0;
    }
.triveda-modal-service-name {
    font-size: 13px;
}
    
    
    .triveda-section-6-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .triveda-section-6-services,
    .triveda-section-6-form {
        padding: 25px;
    }
    
    .triveda-section-6-services-title {
        font-size: 22px;
    }
    
    .triveda-section-6-form-title {
        font-size: 20px;
    }
    
    .triveda-modal {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .triveda-section-6-title {
        font-size: 26px;
    }
    
    .triveda-section-6-tag {
        padding: 8px 10px;
    }
    
    .triveda-section-6-tag span {
        font-size: 11px;
    }
    
    .triveda-section-6-form-button {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .triveda-modal-header,
    .triveda-modal-body {
        padding: 20px;
    }
    
    .triveda-modal-title {
        font-size: 20px;
    }
}
/* Секция 7 */
.triveda-section-7 {
    position: relative;
    padding: 50px 0;
    /* background: rgba(12, 73, 102, 0.03); */
    border-radius: 30px;
}

.triveda-section-7-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 60px;
    max-width: 900px;
    /* margin-left: auto;
    margin-right: auto; */
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.2s forwards;
}

/* Контейнер таблицы */
.triveda-section-7-table-container {
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(12, 73, 102, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.4s forwards;
}

/* Десктопная версия таблицы */
.triveda-section-7-table-wrapper {
    overflow-x: auto;
    background: white;
}

.triveda-section-7-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.triveda-section-7-table-header {
    background: rgb(12, 73, 102);
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    padding: 20px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.triveda-section-7-table-header:last-child {
    border-right: none;
}

/* Заголовки секций таблицы */
.triveda-section-7-table-section-header {
    background: rgba(12, 73, 102, 0.08);
}

.triveda-section-7-table-section-header td {
    padding: 15px 20px;
    font-weight: 700;
    font-size: 16px;
    color: rgb(12, 73, 102);
    border-bottom: 2px solid rgba(12, 73, 102, 0.1);
    text-align: center;
}

/* Ячейки таблицы */
.triveda-section-7-table-category {
    padding: 18px 20px;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid rgba(12, 73, 102, 0.1);
    width: 35%;
    background: rgba(12, 73, 102, 0.02);
}

.triveda-section-7-table-value {
    padding: 18px 15px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid rgba(12, 73, 102, 0.1);
    white-space: nowrap;
}

/* Цвета для значений */
.triveda-section-7-table-value-inhouse {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.triveda-section-7-table-value-outsource {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.05);
}

.triveda-section-7-table-value-saving {
    color: rgb(203, 175, 114);
    background: rgba(203, 175, 114, 0.05);
}

/* Итоговая строка */
.triveda-section-7-table-total {
    background: rgba(12, 73, 102, 0.05);
}

.triveda-section-7-table-total .triveda-section-7-table-category {
    font-weight: 700;
    color: rgb(12, 73, 102);
    font-size: 17px;
}

.triveda-section-7-table-total .triveda-section-7-table-value {
    font-size: 18px;
    font-weight: 700;
}

/* Мобильная версия таблицы */
.triveda-section-7-table-mobile {
    display: none;
    background: white;
    padding: 20px;
}

.triveda-section-7-mobile-section {
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(12, 73, 102, 0.1);
    padding-bottom: 20px;
}

.triveda-section-7-mobile-section:last-of-type {
    border-bottom: none;
}

.triveda-section-7-mobile-section-title {
    font-size: 18px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 15px;
    padding: 10px 15px;
    background: rgba(12, 73, 102, 0.08);
    border-radius: 10px;
}

.triveda-section-7-mobile-item {
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(12, 73, 102, 0.02);
    border: 1px solid rgba(12, 73, 102, 0.05);
}

.triveda-section-7-mobile-item-title {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.triveda-section-7-mobile-values {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.triveda-section-7-mobile-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(12, 73, 102, 0.1);
}

.triveda-section-7-mobile-value:last-child {
    border-bottom: none;
}

.triveda-section-7-mobile-value-label {
    font-size: 14px;
    color: #666;
    flex: 1;
}

.triveda-section-7-mobile-value-amount {
    font-size: 15px;
    font-weight: 600;
    flex-shrink: 0;
    margin-left: 10px;
}

/* Итог для мобильной версии */
.triveda-section-7-mobile-total {
    margin-top: 25px;
    padding: 20px;
    border-radius: 30px;
    background: rgba(12, 73, 102, 0.05);
    border: 2px solid rgba(12, 73, 102, 0.1);
}

.triveda-section-7-mobile-total-title {
    font-size: 18px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 15px;
    text-align: center;
}

.triveda-section-7-mobile-total-values {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.triveda-section-7-mobile-total-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 10px;
    background: white;
}

.triveda-section-7-mobile-total-label {
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.triveda-section-7-mobile-total-amount {
    font-size: 16px;
    font-weight: 700;
}

/* Блок с призывом к действию */
.triveda-section-7-calculator-cta {
    background: rgb(227 190 111);
    border-radius: 30px;
    padding: 40px;
    border: 2px solid rgba(203, 175, 114, 0.3);
    box-shadow: 0 10px 30px rgba(12, 73, 102, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.6s forwards;
}

.triveda-section-7-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.triveda-section-7-cta-text {
    flex: 1;
}

.triveda-section-7-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.3;
}

.triveda-section-7-cta-description {
    font-size: 18px;
    color: #00000080;
    line-height: 1.5;
    max-width: 600px;
}

.triveda-section-7-cta-action {
    flex-shrink: 0;
}

.triveda-section-7-cta-button {
    display: inline-block;
    background-color: rgb(12, 73, 102);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(203, 175, 114, 0.3);
}

.triveda-section-7-cta-button:hover {
    background-color: rgb(12, 73, 102);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(203, 175, 114, 0.4);
    text-decoration: none;
    color: white;
}

.triveda-section-7-cta-button:active {
    transform: translateY(-1px);
}



/* Адаптивность для секции 7 */
@media (max-width: 1024px) {
    .triveda-section-7-title {
        font-size: 36px;
        padding: 0 20px;
    }
    
    .triveda-section-7-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .triveda-section-7-cta-title {
        font-size: 24px;
    }
    
    .triveda-section-7-cta-description {
        font-size: 16px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .triveda-section-7 {
        padding: 70px 0;
    }
    
    .triveda-section-7-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .triveda-section-7-table-wrapper {
        display: none;
    }
    
    .triveda-section-7-table-mobile {
        display: block;
    }
    
    .triveda-section-7-calculator-cta {
        padding: 30px;
    }
    
    .triveda-section-7-cta-button {
        padding: 16px 32px;
        font-size: 15px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .triveda-section-7-title {
        font-size: 26px;
    }
    
    .triveda-section-7-table-mobile {
        padding: 15px;
    }
    
    .triveda-section-7-mobile-section-title {
        font-size: 16px;
        padding: 8px 12px;
    }
    
    .triveda-section-7-mobile-item-title {
        font-size: 14px;
    }
    
    .triveda-section-7-mobile-value-label,
    .triveda-section-7-mobile-value-amount {
        font-size: 14px;
    }
    
    .triveda-section-7-mobile-total {
        padding: 15px;
    }
    
    .triveda-section-7-mobile-total-title {
        font-size: 16px;
    }
    
    .triveda-section-7-mobile-total-label,
    .triveda-section-7-mobile-total-amount {
        font-size: 15px;
    }
    
    .triveda-section-7-calculator-cta {
        padding: 25px;
    }
    
    .triveda-section-7-cta-title {
        font-size: 22px;
    }
    
    .triveda-section-7-cta-description {
        font-size: 15px;
    }
}

/* Анимация для плавного скролла к якорю */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
/* Секция 8 */
.triveda-section-8 {
    position: relative;
    padding: 100px 0;
    background-color: white;
    /* border-radius: 30px; */
    overflow: hidden;
}

.triveda-section-8-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0c4966;
    /* margin-bottom: 60px; */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.2s forwards;
}

/* Карусель */
.triveda-section-8-carousel {
    position: relative;
    height: 260px;
    /* margin: 0 auto 40px; */
    overflow: hidden;
    max-width: 1200px;
}

.triveda-section-8-carousel-track {
    display: flex;
    height: 100%;
    animation: triveda-carousel-scroll 40s linear infinite;
    will-change: transform;
}

/* Пауза анимации при наведении */
.triveda-section-8-carousel:hover .triveda-section-8-carousel-track {
    animation-play-state: paused;
}

/* Логотипы */
.triveda-section-8-logo {
    flex: 0 0 200px;
    height: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.triveda-section-8-logo-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 100%;
    padding: 30px;
     transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    max-width: 250px;
    max-height: 250px;
}

/* .triveda-section-8-logo-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(12, 73, 102, 0.03) 0%, 
        rgba(203, 175, 114, 0.03) 100%);
    z-index: 1;
} */

.triveda-section-8-logo:hover .triveda-section-8-logo-inner {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(12, 73, 102, 0.15);
    border-color: rgba(203, 175, 114, 0.3);
}

/* Плейсхолдеры для логотипов */
.triveda-section-8-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.triveda-section-8-logo-placeholder img {
    object-fit: contain;
    height: 100%;
}

.triveda-section-8-logo-placeholder span {
    font-size: 20px;
    font-weight: 600;
    color: rgb(12, 73, 102);
    text-align: center;
    padding: 15px 20px;
    background: rgba(12, 73, 102, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.triveda-section-8-logo:hover .triveda-section-8-logo-placeholder span {
    background: rgba(203, 175, 114, 0.1);
    color: rgb(203, 175, 114);
    transform: scale(1.1);
}

/* Градиентные накладки для плавного исчезновения */
.triveda-section-8-carousel-overlay {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.triveda-section-8-carousel-overlay-left {
    left: 0;
    background: linear-gradient(90deg, 
        #ffffff, 
        rgba(255, 255, 255, 0) 100%);
}

.triveda-section-8-carousel-overlay-right {
    right: 0;
    background: linear-gradient(270deg, 
        #ffffff, 
        rgba(255, 255, 255, 0) 100%);
}

/* Анимация карусели */
@keyframes triveda-carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 10)); /* 10 оригинальных логотипов */
    }
}

/* Описание */
.triveda-section-8-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.6s forwards;
}

.triveda-section-8-description p {
    font-size: 18px;
    color: #0c4966;
    line-height: 1.6;
    padding: 0 20px;
}

/* Адаптивность для секции 8 */
@media (max-width: 1024px) {
    .triveda-section-8-title {
        font-size: 36px;
        padding: 0 20px;
    }
    
    .triveda-section-8-carousel {
        height: 280px;
        max-width: 100%;
    }
    
    .triveda-section-8-logo {
        flex: 0 0 180px;
    }
    
    @keyframes triveda-carousel-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-180px * 10));
        }
    }
}

@media (max-width: 768px) {
    .triveda-section-8 {
        padding: 70px 0;
    }
    
    .triveda-section-8-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .triveda-section-8-carousel {
        height: 240px;
    }
    
    .triveda-section-8-logo {
        flex: 0 0 160px;
        padding: 15px;
    }
    
    .triveda-section-8-logo-inner {
        padding: 20px;
    }
    
    .triveda-section-8-logo-placeholder span {
        font-size: 18px;
        padding: 12px 16px;
    }
    
    @keyframes triveda-carousel-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-160px * 10));
        }
    }
    
    .triveda-section-8-description p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .triveda-section-8-title {
        font-size: 26px;
    }
    
    .triveda-section-8-carousel {
        height: 200px;
    }
    
    .triveda-section-8-logo {
        flex: 0 0 140px;
        padding: 10px;
    }
    
    .triveda-section-8-logo-inner {
        padding: 15px;
       
    }
    
    .triveda-section-8-logo-placeholder span {
        font-size: 16px;
        padding: 10px 12px;
    }
    
    @keyframes triveda-carousel-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-140px * 10));
        }
    }
    
    .triveda-section-8-carousel-overlay {
        width: 80px;
    }
    
    .triveda-section-8-description p {
        font-size: 15px;
    }
}

/* Адаптация для очень маленьких экранов */
@media (max-width: 360px) {
    .triveda-section-8-carousel {
        height: 180px;
    }
    
    .triveda-section-8-logo {
        flex: 0 0 120px;
    }
    
    .triveda-section-8-logo-placeholder span {
        font-size: 14px;
    }
    
    @keyframes triveda-carousel-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 10));
        }
    }
}

/* Секция 9 */
.triveda-section-9 {
    position: relative;
    padding: 100px 0;
    background: rgb(227 190 111);
    border-radius: 30px;
}

.triveda-section-9-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.2s forwards;
}

.triveda-section-9-subtitle {
    display: none;
    text-align: center;
    font-size: 20px;
    color: #555;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.4s forwards;
}

/* Контейнер для двух чатов */
.triveda-section-9-chats-container {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.6s forwards;
}

.triveda-section-9-chat {
    flex: 1;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(12, 73, 102, 0.1);
    display: flex;
    flex-direction: column;
    /* border: 1px solid rgba(12, 73, 102, 0.1); */
    max-height: 700px;
}

/* Заголовок чата */
.triveda-section-9-chat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    border-bottom: 1px solid rgba(12, 73, 102, 0.1);
    background: rgb(12 73 102);
}

.triveda-section-9-chat-avatar {
    flex-shrink: 0;
}

.triveda-section-9-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.triveda-section-9-chat:first-child .triveda-section-9-avatar-placeholder {
    background: #e74c3c;
}

.triveda-section-9-chat:last-child .triveda-section-9-avatar-placeholder {
    background: #27ae60;
}

.triveda-section-9-chat-info {
    flex: 1;
}

.triveda-section-9-chat-name {
    font-size: 22px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    /* margin-bottom: 5px; */
}

.triveda-section-9-chat-status {
    font-size: 14px;
    color: #666;
}

.triveda-section-9-chat:first-child .triveda-section-9-chat-status {
    color: #ff604f;
    text-transform: uppercase;
    font-weight: 700;
}

.triveda-section-9-chat:last-child .triveda-section-9-chat-status {
    color: #2ded7e;
    text-transform: uppercase;
    font-weight: 700;
}

/* Контейнер сообщений с прокруткой */
.triveda-section-9-messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
    position: relative;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.triveda-section-9-messages-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.triveda-section-9-messages {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 100%;
}

/* Общие стили для сообщений */
.triveda-section-9-message {
    display: flex;
    max-width: 80%;
}

.triveda-section-9-message-left {
    align-self: flex-start;
}

.triveda-section-9-message-right {
    align-self: flex-end;
}

.triveda-section-9-message-content {
    padding: 15px 20px;
    border-radius: 20px;
    position: relative;
    line-height: 1.4;
}

.triveda-section-9-message-left .triveda-section-9-message-content {
    background: rgba(12, 73, 102, 0.05);
    border-bottom-left-radius: 5px;
}

.triveda-section-9-message-right .triveda-section-9-message-content {
    background: rgba(203, 175, 114, 0.1);
    border-bottom-right-radius: 5px;
}

.triveda-section-9-message-sender {
    font-weight: 700;
    font-size: 14px;
    color: rgb(12, 73, 102);
    margin-bottom: 5px;
}

.triveda-section-9-message-text {
    font-size: 16px;
    color: #333;
}

.triveda-section-9-message-right .triveda-section-9-message-text {
    color: #555;
}

/* Вложение (файл) */
.triveda-section-9-attachment {
    align-self: flex-end;
    background: rgba(203, 175, 114, 0.1);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 250px;
    border: 1px solid rgba(203, 175, 114, 0.2);
    margin: 10px 0;
}

.triveda-section-9-attachment-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.triveda-section-9-attachment-info {
    flex: 1;
    overflow: hidden;
}

.triveda-section-9-attachment-name {
    font-size: 14px;
    font-weight: 600;
    color: rgb(12, 73, 102);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.triveda-section-9-attachment-size {
    font-size: 12px;
    color: #666;
}

/* Статус-сообщения по центру */
.triveda-section-9-status {
    align-self: center;
    text-align: center;
    padding: 12px 25px;
    background: rgba(12, 73, 102, 0.05);
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 90%;
   
}

.triveda-section-9-status-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.triveda-section-9-status-text {
    font-size: 14px;
    color: #555;
    font-style: italic;
}

.triveda-section-9-status-ironic {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.triveda-section-9-status-ironic .triveda-section-9-status-text {
    color: #e74c3c;
    font-weight: 500;
}

.triveda-section-9-status-positive {
    background: rgba(39, 174, 96, 0.1);
}

.triveda-section-9-status-positive .triveda-section-9-status-text {
    color: #27ae60;
    font-weight: 500;
}

/* Индикатор прокрутки */
.triveda-section-9-scroll-indicator {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    opacity: 0.7;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: none;
}

.triveda-section-9-messages-container.scrolled .triveda-section-9-scroll-indicator {
    opacity: 0;
}

.triveda-section-9-scroll-indicator span {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.triveda-section-9-scroll-icon {
    font-size: 20px;
    color: rgb(203, 175, 114);
    animation: triveda-scroll-bounce 2s infinite;
}

@keyframes triveda-scroll-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Кнопка действия */
.triveda-section-9-action {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.8s forwards;
}

.triveda-section-9-button {
    background-color: rgb(12, 73, 102);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(203, 175, 114, 0.3);
}

.triveda-section-9-button:hover {
   
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(203, 175, 114, 0.4);
}

.triveda-section-9-button:active {
    transform: translateY(-2px);
}

/* Модальное окно для чата */
.triveda-modal-chat {
    max-width: 500px;
}

.triveda-modal-input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.triveda-modal-messengers {
    margin-bottom: 25px;
}

.triveda-modal-messengers-title {
    font-size: 16px;
    font-weight: 600;
    color: rgb(12, 73, 102);
    margin-bottom: 15px;
}

.triveda-modal-messengers-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.triveda-modal-messenger-option {
    cursor: pointer;
}

.triveda-modal-messenger-input {
    display: none;
}

.triveda-modal-messenger-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 2px solid rgba(12, 73, 102, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.triveda-modal-messenger-input:checked + .triveda-modal-messenger-content {
    border-color: rgb(203, 175, 114);
    background: rgba(203, 175, 114, 0.05);
}

.triveda-modal-messenger-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 73, 102, 0.05);
    border-radius: 50%;
}

.triveda-modal-messenger-info {
    flex: 1;
}

.triveda-modal-messenger-name {
    font-size: 16px;
    font-weight: 600;
    color: rgb(12, 73, 102);
    margin-bottom: 3px;
}

.triveda-modal-messenger-description {
    font-size: 13px;
    color: #666;
}

/* Адаптивность для секции 9 */
@media (max-width: 1024px) {
    .triveda-section-9-title {
        font-size: 36px;
    }
    
    .triveda-section-9-subtitle {
        font-size: 18px;
        padding: 0 20px;
    }
    
    .triveda-section-9-chats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .triveda-section-9-chat {
        max-height: 600px;
    }
    
    .triveda-section-9-message {
        max-width: 85%;
    }
}

@media (max-width: 768px) {
    .triveda-section-9 {
        padding: 70px 0;
    }
    
    .triveda-section-9-title {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .triveda-section-9-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .triveda-section-9-chat-header {
        padding: 20px;
    }
    
    .triveda-section-9-avatar-placeholder {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .triveda-section-9-chat-name {
        font-size: 20px;
    }
    
    .triveda-section-9-chat-status {
        font-size: 13px;
    }
    
    .triveda-section-9-messages-container {
        padding: 20px;
    }
    
    .triveda-section-9-message-content {
        padding: 12px 16px;
    }
    
    .triveda-section-9-message-text {
        font-size: 15px;
    }
    
    .triveda-section-9-status {
        padding: 10px 20px;
    }
    
    .triveda-section-9-status-text {
        font-size: 13px;
    }
    
    .triveda-section-9-button {
        padding: 18px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .triveda-section-9-title {
        font-size: 26px;
    }
    
    .triveda-section-9-subtitle {
        font-size: 15px;
    }
    
    .triveda-section-9-chat-header {
        padding: 15px;
    }
    
    .triveda-section-9-avatar-placeholder {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .triveda-section-9-chat-name {
        font-size: 18px;
    }
    
    .triveda-section-9-messages-container {
        padding: 15px;
    }
    
    .triveda-section-9-message {
        max-width: 90%;
    }
    
    .triveda-section-9-message-content {
        padding: 10px 14px;
    }
    
    .triveda-section-9-message-text {
        font-size: 14px;
    }
    
    .triveda-section-9-attachment {
        padding: 12px;
        max-width: 200px;
    }
    
    .triveda-section-9-status {
        padding: 8px 15px;
    }
    
    .triveda-section-9-status-text {
        font-size: 12px;
    }
    
    .triveda-section-9-button {
        padding: 16px 30px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }
}
/* Секция 10 */
.triveda-section-10 {
    position: relative;
    padding: 100px 0;
    background-color: #fff;
    border-radius: 30px;
}

.triveda-section-10-title {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.2s forwards;
        font-weight: 700;
    color: rgb(12, 73, 102);
    line-height: 1;
    text-transform: uppercase;
}

.triveda-section-10-title-large {
    font-size: 72px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -1px;
    display: block;
}

.triveda-section-10-main {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.4s forwards;
}

.triveda-section-10-left {
    flex: 1;
    display: none;
}

.triveda-section-10-right {
    flex: 1;
}

/* Изображение */
.triveda-section-10-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(12, 73, 102, 0.15);
}

.triveda-section-10-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(12, 73, 102, 0.1) 0%, 
        rgba(203, 175, 114, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.triveda-section-10-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.triveda-section-10-image-placeholder span {
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-weight: 600;
    color: rgb(12, 73, 102);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    border-radius: 30px;
    text-align: center;
    max-width: 80%;
}

/* Статистика */
.triveda-section-10-stats {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.triveda-section-10-stat {
    text-align: center;
    width: 100%;
}

.triveda-section-10-stat-number {
    font-size: 72px;
    font-weight: 800;
    color: rgb(12, 73, 102);
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

.triveda-section-10-stat-number span:first-child {
    /* min-width: 120px;
    text-align: right; */
}

.triveda-section-10-stat-unit {
    font-size: 24px;
    font-weight: 600;
    color: rgb(203, 175, 114);
    margin-bottom: 15px;
    text-transform: lowercase;
}

.triveda-section-10-stat-text {
    font-size: 20px;
    color: #555;
    line-height: 1.4;
    max-width: 400px;
    margin: 0 auto;
}

/* Кнопка */
.triveda-section-10-action {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.6s forwards;
}

.triveda-section-10-button {
    background-color: rgb(203, 175, 114);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 22px 60px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(203, 175, 114, 0.3);
    letter-spacing: 0.5px;
}

.triveda-section-10-button:hover {
    background-color: rgb(185, 158, 100);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(203, 175, 114, 0.4);
}

.triveda-section-10-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Секция 11 */
.triveda-section-11 {
    position: relative;
    padding: 100px 0;
    background: rgba(12, 73, 102, 0.03);
}

.triveda-section-11-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 60px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.2s forwards;
}

.triveda-section-11-main {
    display: flex;
    gap: 60px;
    position: relative;
}

.triveda-section-11-left {
    flex: 2;
}

.triveda-section-11-right {
    flex: 1;
    position: relative;
}

/* Аккордеон */
.triveda-section-11-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.triveda-section-11-accordion-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(12, 73, 102, 0.1);
    box-shadow: 0 5px 15px rgba(12, 73, 102, 0.05);
    transition: all 0.3s ease;
}

.triveda-section-11-accordion-item.active {
    box-shadow: 0 10px 30px rgba(12, 73, 102, 0.1);
    border-color: rgba(203, 175, 114, 0.3);
}

.triveda-section-11-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.triveda-section-11-accordion-item.active .triveda-section-11-accordion-header {
    background: rgba(12, 73, 102, 0.02);
}

.triveda-section-11-accordion-title {
    font-size: 18px;
    font-weight: 600;
    color: rgb(12, 73, 102);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.triveda-section-11-accordion-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: rgba(12, 73, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.triveda-section-11-accordion-item.active .triveda-section-11-accordion-icon {
    background: rgb(12, 73, 102);
    color: white;
    transform: rotate(180deg);
}

.triveda-section-11-accordion-icon span {
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.triveda-section-11-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.triveda-section-11-accordion-item.active .triveda-section-11-accordion-content {
    max-height: 1000px;
}

.triveda-section-11-accordion-body {
    padding: 0 30px;
}

.triveda-section-11-accordion-body p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.triveda-section-11-accordion-body ol,
.triveda-section-11-accordion-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.triveda-section-11-accordion-body li {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.triveda-section-11-accordion-body strong {
    color: rgb(12, 73, 102);
}

/* Автор ответа */
.triveda-section-11-answer-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    border-top: 1px solid rgba(12, 73, 102, 0.1);
    background: rgba(12, 73, 102, 0.02);
    margin-top: 20px;
}

.triveda-section-11-answer-avatar {
    flex-shrink: 0;
}

.triveda-section-11-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.triveda-section-11-answer-author:nth-child(odd) .triveda-section-11-avatar-placeholder {
    background: rgb(203, 175, 114);
}

.triveda-section-11-answer-author:nth-child(even) .triveda-section-11-avatar-placeholder {
    background: rgb(12, 73, 102);
}

.triveda-section-11-answer-info {
    flex: 1;
}

.triveda-section-11-answer-name {
    font-size: 16px;
    font-weight: 600;
    color: rgb(12, 73, 102);
    margin-bottom: 3px;
}

.triveda-section-11-answer-experience {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Прилипающий блок */
.triveda-section-11-sticky {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(12, 73, 102, 0.1);
    border: 2px solid rgba(203, 175, 114, 0.3);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.4s forwards;
}

.triveda-section-11-sticky-title {
    font-size: 24px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 15px;
    line-height: 1.3;
}

.triveda-section-11-sticky-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.triveda-section-11-sticky-button {
    background-color: rgb(12, 73, 102);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(12, 73, 102, 0.3);
}

.triveda-section-11-sticky-button:hover {
    background-color: rgb(9, 58, 82);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(12, 73, 102, 0.4);
}

.triveda-section-11-sticky-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.triveda-section-11-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(12, 73, 102, 0.08);
    color: rgb(12, 73, 102);
}

.triveda-section-11-social-icon:hover {
    transform: scale(1.1);
}

.triveda-section-11-social-icon[data-messenger="telegram"] {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.triveda-section-11-social-icon[data-messenger="whatsapp"] {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

/* Адаптивность для секций 10 и 11 */
@media (max-width: 1024px) {
    .triveda-section-10-title-large {
        font-size: 56px;
    }
    
    .triveda-section-10-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .triveda-section-10-image {
        height: 400px;
    }
    
    .triveda-section-10-stat-number {
        font-size: 56px;
    }
    
    .triveda-section-10-stat-unit {
        font-size: 20px;
    }
    
    .triveda-section-10-stat-text {
        font-size: 18px;
    }
    
    .triveda-section-10-button {
        padding: 20px 40px;
        font-size: 18px;
    }
    
    .triveda-section-11-title {
        font-size: 36px;
    }
    
    .triveda-section-11-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .triveda-section-11-sticky {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .triveda-section-10,
    .triveda-section-11 {
        padding: 70px 0;
    }
    
    .triveda-section-10-title {
        margin-bottom: 40px;
    }
    
    .triveda-section-10-title-large {
        font-size: 42px;
    }
    
    .triveda-section-10-image {
        height: 300px;
    }
    
    .triveda-section-10-image-placeholder span {
        font-size: 20px;
        padding: 15px 30px;
    }
    
    .triveda-section-10-stats {
        gap: 40px;
        flex-direction: column;
    }
    
    .triveda-section-10-stat-number {
        font-size: 48px;
    }
    
    .triveda-section-10-stat-text {
        font-size: 16px;
    }
    
    .triveda-section-10-button {
        padding: 18px 30px;
        font-size: 16px;
    }
    
    .triveda-section-11-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .triveda-section-11-accordion-header {
        padding: 20px 25px;
    }
    
    .triveda-section-11-accordion-title {
        font-size: 16px;
    }
    
    .triveda-section-11-accordion-body {
        padding: 0 25px;
    }
    
    .triveda-section-11-answer-author {
        padding: 20px 25px;
    }
    
    .triveda-section-11-sticky {
        padding: 30px;
    }
    
    .triveda-section-11-sticky-title {
        font-size: 22px;
    }
    
    .triveda-section-11-sticky-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .triveda-section-10-title-large {
        font-size: 36px;
    }
    
    .triveda-section-10-image {
        height: 250px;
    }
    
    .triveda-section-10-image-placeholder span {
        font-size: 18px;
        padding: 12px 24px;
    }
    
    .triveda-section-10-stat-number {
        font-size: 42px;
    }
    
    .triveda-section-10-stat-unit {
        font-size: 18px;
    }
    
    .triveda-section-10-button {
        padding: 16px 20px;
        font-size: 15px;
        width: 100%;
        max-width: 350px;
    }
    
    .triveda-section-11-title {
        font-size: 26px;
    }
    
    .triveda-section-11-accordion-header {
        padding: 18px 20px;
    }
    
    .triveda-section-11-accordion-title {
        font-size: 15px;
    }
    
    .triveda-section-11-accordion-body p,
    .triveda-section-11-accordion-body li {
        font-size: 15px;
    }
    
    /* .triveda-section-11-answer-avatar {
        display: none;
    } */
    
    .triveda-section-11-sticky {
        padding: 25px;
    }
    
    .triveda-section-11-sticky-title {
        font-size: 20px;
    }
    
    .triveda-section-11-sticky-button {
        padding: 16px 20px;
        font-size: 15px;
    }
}

/* Секция 12 */
.triveda-section-12 {
    position: relative;
    padding: 100px 0;
    background-color: #fff;
    border-radius: 30px;
}

.triveda-section-12-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.2s forwards;
}

.triveda-section-12-subtitle {
    text-align: center;
    font-size: 20px;
    color: #555;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.4s forwards;
}

/* Переключатель видео/текст */
.triveda-section-12-switcher {
    display: none;
    justify-content: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 0.6s forwards;
}

.triveda-section-12-switch {
    display: flex;
    background: rgba(12, 73, 102, 0.08);
    border-radius: 30px;
    padding: 6px;
    border: 1px solid rgba(12, 73, 102, 0.1);
}

.triveda-section-12-switch-btn {
    background: transparent;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    color: rgb(12, 73, 102);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.triveda-section-12-switch-btn.active {
    background: rgb(12, 73, 102);
    color: white;
    box-shadow: 0 4px 12px rgba(12, 73, 102, 0.2);
}

.triveda-section-12-switch-btn:hover:not(.active) {
    background: rgba(12, 73, 102, 0.1);
}

/* Контейнеры отзывов */
.triveda-section-12-text-reviews,
.triveda-section-12-video-reviews {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out forwards;
}

.triveda-section-12-text-reviews.active,
.triveda-section-12-video-reviews.active {
    display: block;
    animation-delay: 0.8s;
}

/* Текстовые отзывы */
.triveda-section-12-reviews-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.triveda-section-12-reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

/* Карточка отзыва */
.triveda-section-12-review {
    flex: 0 0 calc(25% - 22.5px); /* 4 отзыва в контейнере минус gaps */
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(12, 73, 102, 0.1);
    box-shadow: 0 10px 30px rgba(12, 73, 102, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    min-height: 500px;
}

.triveda-section-12-review:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(12, 73, 102, 0.15);
    border-color: rgba(203, 175, 114, 0.3);
}

/* Заголовок отзыва */
.triveda-section-12-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.triveda-section-12-review-author {
    flex: 1;
}

.triveda-section-12-author-name {
    font-size: 20px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 5px;
}

.triveda-section-12-review-date {
    font-size: 14px;
    color: #666;
}

/* Бейдж источника */
.triveda-section-12-review-source {
    flex-shrink: 0;
    margin-left: 15px;
}

.triveda-section-12-source-badge {
    background: rgba(12, 73, 102, 0.1);
    border-radius: 20px;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 600;
    color: rgb(12, 73, 102);
    white-space: nowrap;
}

/* Рейтинг */
.triveda-section-12-review-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(12, 73, 102, 0.1);
}

.triveda-section-12-stars {
    display: flex;
    gap: 2px;
}

.triveda-section-12-star {
    font-size: 22px;
    color: rgb(203, 175, 114);
    line-height: 1;
}

.triveda-section-12-rating-text {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* Фотографии отзыва */
.triveda-section-12-review-images {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    min-height: 120px;
    display: none;
}

.triveda-section-12-image-placeholder {
    flex: 1;
    min-width: 120px;
    height: 120px;
    background: rgba(12, 73, 102, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(12, 73, 102, 0.2);
}

.triveda-section-12-image-placeholder span {
    font-size: 14px;
    color: #666;
    text-align: center;
    padding: 0 10px;
}

/* Текст отзыва */
.triveda-section-12-review-text {
    flex: 1;
}

.triveda-section-12-review-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* CTA блок */
.triveda-section-12-review-cta {
    flex: 0 0 calc(25% - 22.5px);
    background: linear-gradient(135deg, rgba(12, 73, 102, 0.95), rgba(12, 73, 102, 0.85));
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(203, 175, 114, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.triveda-section-12-cta-content {
    text-align: center;
}

.triveda-section-12-cta-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
}

.triveda-section-12-cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.5;
}

.triveda-section-12-cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.triveda-section-12-form-group {
    position: relative;
}

.triveda-section-12-form-input {
    width: 100%;
    padding: 16px 20px;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    color: rgb(12, 73, 102);
    background: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.triveda-section-12-form-input:focus {
    outline: none;
    border-color: rgb(203, 175, 114);
    box-shadow: 0 0 0 3px rgba(203, 175, 114, 0.2);
}

.triveda-section-12-form-input::placeholder {
    color: rgba(12, 73, 102, 0.5);
}

.triveda-section-12-form-agreement {
    margin-bottom: 10px;
}

/* Кастомный чекбокс */
.triveda-section-12-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.triveda-section-12-checkbox-input {
    display: none;
}

.triveda-section-12-checkbox-custom {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.triveda-section-12-checkbox-input:checked + .triveda-section-12-checkbox-custom {
    background-color: rgb(203, 175, 114);
    border-color: rgb(203, 175, 114);
}

.triveda-section-12-checkbox-input:checked + .triveda-section-12-checkbox-custom::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.triveda-section-12-checkbox-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.triveda-section-12-cta-button {
    background-color: rgb(203, 175, 114);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.triveda-section-12-cta-button:hover {
    background-color: rgb(185, 158, 100);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Навигация */
.triveda-section-12-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s ease-out 1s forwards;
}

.triveda-section-12-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(12, 73, 102, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgb(12, 73, 102);
}

.triveda-section-12-nav-btn:hover {
    background: rgb(12, 73, 102);
    border-color: rgb(12, 73, 102);
    color: white;
    transform: scale(1.1);
}

.triveda-section-12-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.triveda-section-12-nav-btn:disabled:hover {
    background: white;
    border-color: rgba(12, 73, 102, 0.2);
    color: rgb(12, 73, 102);
}

.triveda-section-12-dots {
    display: flex;
    gap: 10px;
}

.triveda-section-12-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(12, 73, 102, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.triveda-section-12-dot.active {
    background: rgb(12, 73, 102);
    transform: scale(1.2);
}

/* Видео отзывы */
.triveda-section-12-video-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.triveda-section-12-video-review {
    flex: 0 0 350px;
    max-width: 350px;
}

.triveda-section-12-video-player {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 177.78%; /* 9/16 соотношение */
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(12, 73, 102, 0.15);
}

.triveda-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.triveda-video-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.triveda-video-play-btn,
.triveda-video-sound-btn {
    width: 40px;
    height: 40px;
    background: rgba(12, 73, 102, 0.8);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.triveda-video-play-btn:hover,
.triveda-video-sound-btn:hover {
    background: rgba(12, 73, 102, 1);
    transform: scale(1.1);
}

.triveda-section-12-video-info {
    text-align: center;
}

.triveda-section-12-video-author {
    font-size: 18px;
    font-weight: 600;
    color: rgb(12, 73, 102);
    margin-bottom: 5px;
}

.triveda-section-12-video-date {
    font-size: 14px;
    color: #666;
}

/* Адаптивность для секции 12 */
@media (max-width: 1200px) {
    .triveda-section-12-review {
        flex: 0 0 calc(33.333% - 20px); /* 3 отзыва в контейнере */
    }
    
    .triveda-section-12-review-cta {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 1024px) {
    .triveda-section-12-title {
        font-size: 36px;
    }
    
    .triveda-section-12-subtitle {
        font-size: 18px;
    }
    
    .triveda-section-12-review {
        flex: 0 0 calc(50% - 15px); /* 2 отзыва в контейнере */
    }
    
    .triveda-section-12-review-cta {
        flex: 0 0 calc(50% - 15px);
    }
    
    .triveda-section-12-video-review {
        flex: 0 0 300px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .triveda-section-12 {
        padding: 70px 0;
    }
    
    .triveda-section-12-title {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .triveda-section-12-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .triveda-section-12-switch-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .triveda-section-12-review {
        flex: 0 0 100%; /* 1 отзыв в контейнере */
        min-height: auto;
        padding: 25px;
    }
    
    .triveda-section-12-review-cta {
        flex: 0 0 100%;
        padding: 30px;
    }
    
    .triveda-section-12-cta-title {
        font-size: 22px;
    }
    
    .triveda-section-12-cta-subtitle {
        font-size: 16px;
    }
    
    .triveda-section-12-review-images {
        min-height: 100px;
    }
    
    .triveda-section-12-image-placeholder {
        height: 100px;
        min-width: 100px;
    }
    
    .triveda-section-12-video-review {
        flex: 0 0 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .triveda-section-12-title {
        font-size: 26px;
    }
    
    .triveda-section-12-switch {
        width: 100%;
        justify-content: center;
    }
    
    .triveda-section-12-switch-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .triveda-section-12-review {
        padding: 20px;
    }
    
    .triveda-section-12-author-name {
        font-size: 18px;
    }
    
    .triveda-section-12-star {
        font-size: 20px;
    }
    
    .triveda-section-12-review-text p {
        font-size: 15px;
    }
    
    .triveda-section-12-cta-title {
        font-size: 20px;
    }
    
    .triveda-section-12-form-input {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .triveda-section-12-cta-button {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .triveda-section-12-nav-btn {
        width: 40px;
        height: 40px;
    }
}

/* Общие стили для кнопок управления видео */
.triveda-video-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.triveda-video-play-btn,
.triveda-video-sound-btn {
    width: 40px;
    height: 40px;
    background: rgba(12, 73, 102, 0.8);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.triveda-video-play-btn:hover,
.triveda-video-sound-btn:hover {
    background: rgba(12, 73, 102, 1);
    transform: scale(1.1);
}

.triveda-video-play-btn svg,
.triveda-video-sound-btn svg {
    width: 20px;
    height: 20px;
}

/* Секция: Калькулятор стоимости */

.calculator-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(12, 73, 102, 1) 0%, rgb(19, 95, 133) 100%);
      border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.section-calc-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: rgb(227 190 111);
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: triveda-fade-up 0.8s 
ease-out 0.2s forwards;
}
.calculator-header {
    text-align: center;
    margin-bottom: 50px;
}

.calculator-subtitle {
    display: none;
    font-size: 18px;
    color: #ffffffe6;
    max-width: 700px;
    margin: 20px auto 40px;
    line-height: 1.5;
}

/* Карточки преимуществ */
.calculator-benefits {
    display: none;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    border-radius: 30px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(12, 73, 102, 0.08);
    width: calc((100%/3) - 60px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background: rgba(12, 73, 102, 0.1);
    color: rgb(12, 73, 102);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 5px;
}

.benefit-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Основной контейнер калькулятора */
.calculator-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.calculator-main {
    flex: 2;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(12, 73, 102, 0.1);
}

.calculator-sidebar {
    flex: 1;
    position: sticky;
    top: 100px;
}

/* Прогресс-бар квиза */
.quiz-progress {
    display: none;
    padding: 20px;
    background: rgb(227 190 111);
    border-bottom: 1px solid rgba(12, 73, 102, 0.1);
}
.w100 {
    width: 100%;
}
.progress-bar {
    display: none;
    height: 6px;
    background: rgba(12, 73, 102, 0.1);
    border-radius: 3px;
    margin-bottom: 20px;
    overflow: hidden;

}

.progress-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 16.66%; /* 1/6 */
    background: rgb(12, 73, 102);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-around;
    position: relative;
}

.progress-steps .step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(12, 73, 102, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(12, 73, 102, 0.5);
    transition: all 0.3s ease;
}

.progress-steps .step.active {
    background: rgb(12, 73, 102);
    border-color: rgb(12, 73, 102);
    color: white;
}

.progress-steps .step.completed {
    background: rgb(203, 175, 114);
    border-color: rgb(203, 175, 114);
    color: white;
}

/* Шаги квиза */
.quiz-step {
    padding: 30px;
    display: none;
}

.quiz-step.active {
    display: block;
}

.step-header {
    margin-bottom: 30px;
}

.step-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 10px;
    line-height: 1.3;
    text-transform: uppercase;
}

.step-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Варианты выбора */
.step-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.option-card {
    border: 2px solid rgba(12, 73, 102, 0.1);
    border-radius: 30px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.option-card:hover {
    border-color: rgba(12, 73, 102, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(12, 73, 102, 0.1);
}

.option-card.selected {
    border-color: rgb(12, 73, 102);
    background: rgba(12, 73, 102, 0.03);
}

.option-card.selected .option-check {
    opacity: 1;
    transform: scale(1);
}

.option-icon {
    width: 50px;
    height: 50px;
    border-radius: 30px;
    background: rgba(12, 73, 102, 0.1);
    color: rgb(12, 73, 102);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.option-content {
    flex: 1;
}

.option-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 5px;
    line-height: 1.3;
}

.option-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.option-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgb(12, 73, 102);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

/* Подвопросы (шаг 3) */
.step-subquestion {
    margin-bottom: 30px;
}

.step-subquestion h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgb(12, 73, 102);
    margin-bottom: 15px;
}

.sub-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sub-option {
    padding: 12px 20px;
    background: rgba(12, 73, 102, 0.05);
    border: 2px solid rgba(12, 73, 102, 0.1);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    color: rgb(12, 73, 102);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sub-option:hover {
    background: rgba(12, 73, 102, 0.1);
    border-color: rgba(12, 73, 102, 0.3);
}

.sub-option.selected {
    background: rgb(12, 73, 102);
    color: white;
    border-color: rgb(12, 73, 102);
}

/* Множественный выбор (шаг 5) */
.multi-select .option-card.selected {
    border-color: rgb(203, 175, 114);
    background: rgba(203, 175, 114, 0.05);
}

.multi-select .option-card.selected .option-check {
    background: rgb(203, 175, 114);
}

/* Кнопки навигации */
.step-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid rgba(12, 73, 102, 0.1);
}

.btn-prev,
.btn-next,
.btn-skip,
.btn-calculate {
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-prev {
    background: rgba(12, 73, 102, 0.75);
    color: rgb(255, 255, 255);
}

.btn-prev:hover {
    background: rgba(12, 73, 102, 1);
}

.btn-skip {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.btn-skip:hover {
    background: rgba(0, 0, 0, 0.05);
}

.btn-next {
    background: linear-gradient(135deg, rgb(224 5 5 / 84%), rgb(237 0 0 / 83%)) !important;
    color: white;
}

.btn-next:hover {
    background: rgb(10, 60, 85);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 73, 102, 0.2);
}

.btn-calculate {
    background: linear-gradient(135deg, rgb(224 5 5 / 84%), rgb(237 0 0 / 83%));
    color: white;
    font-weight: 700;
    padding: 16px 32px;
}

.btn-calculate:hover {
    background: linear-gradient(135deg, rgb(190, 160, 95) 0%, rgb(205, 180, 120) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(203, 175, 114, 0.3);
}

/* Шаг с результатами */
.result-header {
    text-align: center;
    margin-bottom: 30px;
}

.result-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(12, 73, 102, 0.1);
    color: rgb(12, 73, 102);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.result-title {
    font-size: 24px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.result-price {
    font-size: 42px;
    font-weight: 800;
    color: rgb(203, 175, 114);
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.result-note {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.result-details {
    display: none;
    background: rgba(12, 73, 102, 0.03);
    border-radius: 30px;
    padding: 20px;
    margin-bottom: 30px;
}

.result-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 15px;
}

.result-choices {
    list-style: none;
    padding: 0;
}

.result-choices li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(12, 73, 102, 0.1);
    display: flex;
    justify-content: space-between;
}

.result-choices li:last-child {
    border-bottom: none;
}

.result-cta {
    margin-bottom: 30px;
}

.btn-consultation {
    width: 100%;
    background: linear-gradient(135deg, rgb(224 5 5 / 84%), rgb(237 0 0 / 83%));
    color: white;
    border: none;
    border-radius: 30px;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-consultation:hover {
    background: linear-gradient(135deg, rgb(10, 60, 85) 0%, rgb(15, 80, 110) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(12, 73, 102, 0.3);
}

.result-social {
    text-align: center;
}

.result-social p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(203, 175, 114, 0.1);
    color: rgb(203, 175, 114);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(203, 175, 114, 0.3);
}

.social-icon:hover {
    background: rgba(203, 175, 114, 0.2);
    transform: scale(1.1);
}

.consultation-info {
    background: rgba(12, 73, 102, 0.03);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.consultation-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 10px;
}

.consultation-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.consultation-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consult-benefit {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.consult-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(12, 73, 102, 0.1);
    color: rgb(12, 73, 102);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 3px;
}

.consult-text h5 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(12, 73, 102);
    margin-bottom: 3px;
}

.consult-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.btn-restart {
    background: transparent;
    border: 1px solid rgba(12, 73, 102, 0.2);
    color: rgb(12, 73, 102);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-restart:hover {
    background: rgba(12, 73, 102, 0.05);
    border-color: rgba(12, 73, 102, 0.4);
}

/* Сайдбар */
.sidebar-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sidebar-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12, 73, 102, 0.8);
    color: white;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.sidebar-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(12, 73, 102, 0.08);
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(12, 73, 102, 0.03);
    border-radius: 15px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: rgb(12, 73, 102);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 14px;
    color: #666;
    line-height: 1.3;
}

/* Модальное окно */
.consultation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 73, 102, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s 
ease;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background: white;
    border-radius: 30px;
    padding: 50px 40px 40px 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    overflow-y: auto;
    max-height: 90vh;
    
    /* Тонкий скроллбар для Firefox */
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.2) transparent;
}

/* Тонкий скроллбар для Chrome, Safari, Edge */
.modal-content::-webkit-scrollbar {
    width: 4px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 20px;
    border: transparent;
}

/* Еще более незаметный вариант при наведении */
.modal-content::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(240 248 255);
    border: none;
    color: rgb(12, 73, 102);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(12, 73, 102, 0.2);
    transform: rotate(90deg);
}
#userEmail {
    display: none;
}
.modal-header {
    text-align: center;
    margin-bottom: 15px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 10px;
    background: aliceblue;
    border-radius: 30px;
    padding: 10px;
}

.modal-header p {
    font-size: 16px;
    color: #296a8b;
    line-height: 1.5;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(12, 73, 102, 0.2);
    border-radius: 30px;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    transition: all 0.3s ease;
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: rgb(12, 73, 102);
    box-shadow: 0 0 0 3px rgba(12, 73, 102, 0.1);
}

.modal-form textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    margin-top: 5px;
    accent-color: rgb(12, 73, 102);
    width: auto;
}

.checkbox-group label {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    cursor: pointer;
}

.modal-submit-btn {
background-color: rgb(203, 175, 114);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s 
ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(203, 175, 114, 0.3);
}
#modalAgreement {
    width: 35px;
    height: 25px;
    border-radius: 30px;
}
.modal-submit-btn:hover {
background-color: rgb(185, 158, 100);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(203, 175, 114, 0.4);
}

/* Адаптивность для планшетов */
@media (max-width: 992px) {
    .calculator-wrapper {
        flex-direction: column;
    }
    
    .calculator-sidebar {
        width: 100%;
        position: static;
        display: flex;
        gap: 30px;
        align-items: center;
    }
    
    .sidebar-image {
        flex: 1;
        margin-bottom: 0;
    }
    
    .sidebar-stats {
        flex: 1;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
    }
    
    .step-options {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .benefit-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .calculator-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .calculator-subtitle {
        font-size: 16px;
    }
    
    .calculator-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-card {
        width: 100%;
    }
    
    .calculator-sidebar {
        flex-direction: column;
    }
    
    .sidebar-stats {
        flex-direction: column;
        width: 100%;
    }
    
    .step-options {
        grid-template-columns: 1fr;
    }
    
    .step-title {
        font-size: 2rem;
    }
    
    .result-price {
        font-size: 36px;
    }
    
    .modal-content {
                padding: 60px 25px 0px 25px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .calculator-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .step-title {
        font-size: 2rem;
    }
    
    .quiz-progress,
    .quiz-step {
        padding: 20px;
    }
    
    .option-card {
        padding: 15px;
    }
    
    .option-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .btn-prev,
    .btn-next,
    .btn-skip,
    .btn-calculate {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .result-price {
        font-size: 32px;
    }
    
    .btn-consultation {
        padding: 18px;
        font-size: 16px;
    }
}

/* Стили для плашки экономии */
.economy-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(203, 175, 114, 0.1);
    border: 2px solid rgba(203, 175, 114, 0.3);
    border-radius: 30px;
    padding: 15px 20px;
    margin: 20px auto 30px;
    max-width: 500px;
}

.economy-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(203, 175, 114, 0.2);
    color: rgb(203, 175, 114);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.economy-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: rgb(203, 175, 114);
    margin-bottom: 5px;
    line-height: 1.3;
}

.economy-content p {
    font-size: 14px;
    color: rgba(203, 175, 114, 0.8);
    line-height: 1.4;
}

/* Секция: Финальная заявка */

.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(0deg, rgb(12, 73, 102) 0%, rgb(19, 95, 133) 100%);
    color: white;
}

.final-cta-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.final-cta-content {
    flex: 1;
}

.final-cta-form {
    flex: 1;
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Значок срочности */
.urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgb(224 5 5 / 84%), rgb(237 0 0 / 83%)) !important;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 10px 22px;
    margin-bottom: 25px;
}

.urgency-badge span {
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.urgency-badge i {
    margin-right: 8px;
}
.warn-btn {
    background: linear-gradient(135deg, rgb(224 5 5 / 84%), rgb(237 0 0 / 83%)) !important;
}
/* Заголовок */
.cta-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
}

/* Преимущества в CTA */
.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgb(203, 175, 114);
    color: rgb(12, 73, 102);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.cta-benefit span {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

/* Социальное доказательство */
.social-proof {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.proof-stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: rgb(203, 175, 114);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.3;
}

.proof-note {
    font-style: italic;
    font-size: 15px;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-note i {
    color: rgb(203, 175, 114);
    margin: 0 5px;
}

/* Форма в CTA */
.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin-bottom: 10px;
}

.form-header p {
    font-size: 16px;
    color: #666;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.application-form input,
.application-form textarea {
    /* width: 100%; */
    padding: 16px 20px;
    border: 1px solid rgba(12, 73, 102, 0.2);
    border-radius: 30px;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    transition: all 0.3s ease;
}

.application-form input:focus,
.application-form textarea:focus {
    outline: none;
    border-color: rgb(12, 73, 102);
    box-shadow: 0 0 0 3px rgba(12, 73, 102, 0.1);
}

.application-form textarea {
    min-height: 100px;
    resize: vertical;
}
.application-form .spank{
text-align: center;
text-transform: uppercase;
color: black;
}
.privacy-link {
    color: rgb(12, 73, 102);
    text-decoration: underline;
    font-weight: 600;
}

.privacy-link:hover {
    color: rgb(203, 175, 114);
}

.submit-application-btn {
    width: 100%;
    background: linear-gradient(135deg, rgb(203, 175, 114) 0%, rgb(218, 195, 140) 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-application-btn:hover {
    background: linear-gradient(135deg, rgb(190, 160, 95) 0%, rgb(205, 180, 120) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(203, 175, 114, 0.3);
}

.form-note {
    text-align: center;
    margin-top: 15px;
}

.form-note p {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #4CAF50;
}

/* Альтернативные контакты */
.alternative-contact {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(12, 73, 102, 0.1);
}

.alternative-contact p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.direct-contacts {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;

    align-content: center;
}

.direct-phone,
.direct-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgb(12, 73, 102);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.direct-phone:hover,
.direct-email:hover {
    color: rgb(203, 175, 114);
}

/* Подвал сайта */
.site-footer {
    background: rgb(12, 73, 102);
    color: white;
    padding: 60px 0 30px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-contacts {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: rgb(203, 175, 114);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: rgb(203, 175, 114);
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    text-decoration: none;
}

.contact-text a:hover {
    color: white;
    text-decoration: underline;
}

.map-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: rgb(203, 175, 114) !important;
}

.map-link i {
    margin-right: 5px;
    font-size: 12px;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.social-links {
    margin-top: 30px;
}
.f-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.social-links p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    flex: 1;
}

.social-icon i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.social-icon.whatsapp i {
    background: #25D366;
}

.social-icon.telegram i {
    background: #0088cc;
}

.social-icon.viber i {
    background: #7360F2;
}

.social-icon span {
    font-size: 12px;
    text-align: center;
}

.social-icon:hover {
    transform: translateY(-5px);
}

/* Карта в подвале */
.footer-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(12, 73, 102, 0.9);
    color: white;
    padding: 20px;
    z-index: 2;
}

.map-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.map-overlay p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgb(203, 175, 114);
    color: rgb(12, 73, 102);
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: white;
    transform: translateY(-2px);
}

.map-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Реквизиты и SEO блок */
.footer-details {
    display: flex;
    gap: 40px;
}

.requisites {
    flex: 1;
}

.requisites h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.requisites-content {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.requisites-content p {
    margin-bottom: 15px;
}

.requisites-content strong {
    color: white;
    font-weight: 600;
}

.requisites-content a {
    color: rgb(203, 175, 114);
    text-decoration: none;
}

.requisites-content a:hover {
    text-decoration: underline;
}

.seo-block {
    flex: 2;
}

.seo-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.seo-content {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.seo-content p {
    margin-bottom: 15px;
}

.seo-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.seo-keywords span {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

/* Нижняя часть подвала */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

/* Кнопка "Наверх" */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(203, 175, 114);
    color: rgb(12, 73, 102);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Модальное окно политики */
.privacy-content {
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
}

.privacy-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.privacy-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: rgb(12, 73, 102);
    margin: 25px 0 10px;
}

.privacy-text p {
    margin-bottom: 15px;
}

.privacy-text a {
    color: rgb(12, 73, 102);
    text-decoration: none;
    font-weight: 600;
}

.privacy-text a:hover {
    text-decoration: underline;
}

/* Адаптивность для планшетов */
@media (max-width: 992px) {
    .final-cta-wrapper {
        flex-direction: column;
    }
    
    .final-cta-form {
        width: 100%;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .footer-contacts {
        flex-direction: column;
    }
    
    .footer-details {
        flex-direction: column;
    }
    
    .proof-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .proof-stat {
        max-width: 200px;
    }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .final-cta-form {
        padding: 25px;
    }
    
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .social-icon {
        flex: none;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 24px;
    }
    
    .urgency-badge {
        padding: 8px 18px;
        font-size: 14px;
    }
    
    .submit-application-btn {
        padding: 16px;
        font-size: 16px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Современная шапка с glass-эффектом */
.triveda-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    max-height: 100px;
}

.triveda-header.scrolled {
    background: rgb(255 255 255 / 32%);
    box-shadow: 0 8px 32px rgba(12, 73, 102, 0.1);
}

.triveda-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    position: relative;
    max-height: 100px;
}
.triveda-header-logo {
    /* max-height: 100px; */
    height: 5rem;
    width: 100px;
    background: url(/img/logo/bb.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
/* Логотип */
.triveda-header-logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90%;
}
.triveda-header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: rgb(12, 73, 102);
    line-height: 1.2;
}

.logo-tagline {
    font-family: "Nunito", sans-serif;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.2;
}

/* Десктопное меню */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgb(255 255 255 / 73%);
    border-radius: 30px;
    border: 1px solid rgba(12, 73, 102, 0.1);
    min-width: max-content;
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgb(12, 73, 102);
    border-radius: 8px;
    color: white;
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-number {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: rgb(12, 73, 102);
    text-decoration: none;
    transition: color 0.2s ease;
    text-align: center;
}

.phone-number:hover {
    color: rgb(8, 52, 73);
}

.phone-label {
    font-family: "Nunito", sans-serif;
    font-size: 0.9rem;
    color: #000;
   
}

/* Социальные сети */
.h-social-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    /* gap: 0.5rem; */
    /* padding: 0.5rem 1rem; */
    border-radius: 100%;
    text-decoration: none;
    color: #666;
    /* background: rgba(255, 255, 255, 0.7); */
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    /* font-family: "Nunito", sans-serif; */
    /* font-size: 0.875rem; */
    width: 40px;
}
.social-link img{
width: 100%;
height: 100%;
}
.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}



.social-label {
    display: block;
}
.btn-icon {
    line-height: 0;
}
/* Кнопка заявки */
.header-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgb(12 73 102 / 84%), rgb(8 52 73 / 83%));
    color: white;
    border: none;
    border-radius: 30px;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

.header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12, 73, 102, 0.3);
    background: linear-gradient(135deg, rgb(8, 52, 73), rgb(12, 73, 102));
}

/* Мобильное меню (бургер) */
.mobile-nav {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgb(12, 73, 102);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgb(51 200 108);
    border-radius: 50%;
    color: white;
}

/* Мобильное меню (выдвижное) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: fixed;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: rgb(12, 73, 102);
}

.mobile-menu-body {
    padding: 1.5rem;
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(12, 73, 102, 0.00);
    border-radius: 12px;
    margin-bottom: 1.4rem;
}

.mobile-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    transform: translateX(4px);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.m-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 1rem;
}
.m-social-links .social-link{
width: 50px;
}

.mobile-cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.5rem;
    background: linear-gradient(135deg, rgb(12, 73, 102), rgb(8, 52, 73));
    color: white;
    border: none;
    border-radius: 30px;
    font-family: "Nunito", sans-serif;
    CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
    background: linear-gradient(135deg, rgb(8, 52, 73), rgb(12, 73, 102));
    box-shadow: 0 8px 24px rgba(12, 73, 102, 0.3);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .desktop-nav {
        gap: 1.5rem;
    }
    .location {
        display: none !important;
    }
    .social-link .social-label {
        display: none;
    }
    
    .social-link {
        
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    .triveda-header-logo {
  width: 145px !important;
        background-image: url(/img/logo/sb.webp) !important;
        height: 45px;
}
    .mobile-nav {
        display: flex;
    }
}

@media (max-width: 576px) {
    .logo-tagline {
        display: none;
    }
    
    .mobile-menu-content {
        width: 100%;
    }
}

/* Мобильная навигация */
.mobile-menu-nav {
    margin-bottom: 2rem;
}

.nav-section {
    margin-bottom: 1.5rem;
}

.nav-section-title {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    padding-left: 1rem;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 30px;
    text-decoration: none;
    color: rgb(12, 73, 102);
    background: rgba(12, 73, 102, 0.05);
    border: 1px solid rgba(12, 73, 102, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: rgba(12, 73, 102, 0.1);
    transform: translateX(4px);
}

.nav-link.active {
    background: rgba(12, 73, 102, 0.15);
    border-color: rgb(12, 73, 102);
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgb(12, 73, 102);
    border-radius: 30px;
    color: white;
}

.nav-text {
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    flex: 1;
}

.nav-badge {
    font-family: "Nunito", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    margin-left: auto;
}

/* Акционное предложение */
.mobile-promo {
    background: linear-gradient(135deg, rgba(12, 73, 102, 0.1), rgba(8, 52, 73, 0.1));
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(12, 73, 102, 0.2);
    position: relative;
    overflow: hidden;
}

.mobile-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B6B, #FF8E53);
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-family: "Nunito", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.promo-badge svg {
    width: 14px;
    height: 14px;
}

.promo-title {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: rgb(12, 73, 102);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.promo-text {
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}

/* Адаптивные улучшения */
@media (max-width: 480px) {
    .mobile-menu-nav {
        margin-bottom: 1.5rem;
    }
    
    .nav-section {
        margin-bottom: 1rem;
    }
    
    .nav-link {
        padding: 0.75rem;
    }
    
    .nav-text {
        font-size: 0.875rem;
    }
}

/* Анимации для скрытия/показа шапки */
.triveda-header {
    /* Существующие стили остаются */
    transition: transform 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
    transform: translateY(0);
}

.triveda-header.hidden {
    transform: translateY(-100%);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}

.triveda-header.visible {
    transform: translateY(0);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.location {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-width: 500px;
    /* margin-top: 20px; */
}
.location span {
    background: rgb(12 73 102 / 9%);
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 11px;
    color: rgb(0 0 0 / 90%);
}
/* Специальный класс для секции 1 (чтобы не скрывать шапку в ней) */
.triveda-section-1 {
    position: relative;
    z-index: 1;
}


/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(12, 73, 102, 0.1);
    z-index: 1100;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent-banner.visible {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.cookie-policy-link {
    color: rgb(12, 73, 102);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-policy-link:hover {
    color: rgb(8, 52, 73);
    text-decoration: underline;
}

.cookie-consent-btn {
    background: linear-gradient(135deg, rgb(12, 73, 102), rgb(8, 52, 73));
    color: white;
    border: none;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(12, 73, 102, 0.2);
}

.cookie-consent-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(12, 73, 102, 0.3);
    background: linear-gradient(135deg, rgb(8, 52, 73), rgb(12, 73, 102));
}

/* Адаптивность */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-consent-text {
        text-align: center;
    }
    
    .cookie-consent-btn {
        width: 100%;
        padding: 0.875rem;
    }
}

/* Убедимся, что модальные окна выше cookie-баннера */
.triveda-modal-overlay {
    z-index: 1200;
}

a {
    color: #0c4966;
}