

/* Start:/css/dashboard.css?17564953337036*/
/* Стили для админской панели */
.admin-dashboard {
    padding: 40px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.admin-dashboard .adm-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.admin-dashboard .adm-detail-content-item-block {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.admin-dashboard .adm-detail-content-item-block-title {
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
    color: white;
    padding: 20px 25px;
    font-size: 20px;
    font-weight: 600;
    border: none;
}

.admin-dashboard .adm-detail-content-item-block-content {
    padding: 30px 25px;
}

/* Стили для карточек дашборда */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.dashboard-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.dashboard-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1E88E5;
    border-bottom: 3px solid #1E88E5;
    padding-bottom: 12px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.stat-label {
    color: #555;
    font-size: 15px;
    font-weight: 500;
}

.stat-value {
    font-weight: 600;
    color: #333;
    font-size: 18px;
}

.stat-value.overdue {
    color: #d32f2f;
}

/* Стили для кнопок действий */
.dashboard-action-btn {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.dashboard-action-btn:hover {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(30, 136, 229, 0.3);
}

.dashboard-action-btn:last-child {
    margin-bottom: 0;
}

/* Стили для навигационных карточек */
.navigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.nav-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
}

.nav-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.nav-card-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.nav-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.nav-card-description {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.nav-card-link {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.nav-card-link:hover {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(30, 136, 229, 0.3);
}

/* Адаптивность */
@media (max-width: 768px) {
    .admin-dashboard {
        padding: 20px 0;
    }
    
    .admin-dashboard .adm-detail-content {
        padding: 0 15px;
    }
    
    .dashboard-grid,
    .navigation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dashboard-card,
    .nav-card {
        padding: 20px;
    }
    
    .admin-dashboard .adm-detail-content-item-block-content {
        padding: 20px;
    }
    
    .admin-dashboard .adm-detail-content-item-block-title {
        padding: 15px 20px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .nav-card-icon {
        font-size: 48px;
    }
    
    .nav-card-title {
        font-size: 18px;
    }
}

/* Дополнительные стили для лучшего внешнего вида */
.admin-dashboard .ibc-money-page {
    background: #f8f9fa;
}

.admin-dashboard .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-card,
.nav-card {
    animation: fadeInUp 0.6s ease-out;
}

.dashboard-card:nth-child(2) {
    animation-delay: 0.1s;
}

.dashboard-card:nth-child(3) {
    animation-delay: 0.2s;
}

.nav-card:nth-child(2) {
    animation-delay: 0.1s;
}

.nav-card:nth-child(3) {
    animation-delay: 0.2s;
}

.nav-card:nth-child(4) {
    animation-delay: 0.3s;
}

.nav-card:nth-child(5) {
    animation-delay: 0.4s;
}

.nav-card:nth-child(6) {
    animation-delay: 0.5s;
}

/* Стили для недавних действий */
.recent-actions {
    max-height: 300px;
    overflow-y: auto;
}

.action-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    background: #f9f9f9;
    margin-bottom: 8px;
    border-radius: 6px;
}

.action-time {
    color: #666;
    font-size: 12px;
    min-width: 100px;
}

.action-text {
    color: #333;
    font-size: 14px;
    flex: 1;
    margin-left: 15px;
}

@media (max-width: 768px) {
    .action-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .action-time {
        margin-bottom: 5px;
    }
}

/* End */


/* Start:/local/templates/ibcexchange/template_styles.css?175777737228813*/
@font-face {
    font-family: 'AlimamaShuHeiTi';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/AlimamaShuHeiTi-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'MiSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MiSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'AlibabaSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/AlibabaSans-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AlibabaSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/AlibabaSans-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'AlibabaSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/Alibaba-PuHuiTi-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}
:root {
    /* Цветовая схема */
    --color-primary: #4CAF50;
    --color-primary-dark: #388E3C;
    --color-secondary: #FFC107;
    --color-text-dark: #333333;
    --color-text-light: #666666;
    --color-text-white: #FFFFFF;
    --color-background: #F5F0FF;
    --color-card: #FFFFFF;
    --color-slider-blue: #2196F3;
    --color-slider-orange: #FF9800;

    /* Размеры и отступы */
    --border-radius: 12px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}

body {
    background-color: #F5F5F5;
    color: var(--color-text-dark);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero секция */
.hero-section {

    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.star-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    margin-left: 8px;
    position: relative;
    top: -5px;
}

.star-icon::before {
    content: "★";
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

/* Изображение */
.hero-image-container {
    text-align: center;
    position: relative;
    margin-bottom: -80px; /* Отрицательный margin для наложения калькулятора */
}

.hero-image {
    max-width: 300px !important;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Калькулятор */
.calculator-container {
    position: relative;
    z-index: 2; /* Выше изображения */
    max-width: 1000px;
    margin: 0 auto;
}

.calculator {
    background-color: var(--color-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

/* Табы */
.calculator-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
}

.tab {
    padding: 10px 20px;
    margin-right: 20px;
    cursor: pointer;
    font-weight: 500;
    position: relative;
}

.tab.active {
    color: var(--color-primary);
}

.tab.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
}

/* Содержимое калькулятора */
.calculator-content {
    display: flex;
    flex-wrap: wrap;
}

.calculator-column {
    flex: 1;
    padding: 0 15px;
    min-width: 250px;
}

/* Слайдеры */
.slider-container {
    margin-bottom: 30px;
}

.slider-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.slider-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.slider {
    width: 100%;
    height: 6px;
    background-color: #E0E0E0;
    border-radius: 3px;
    position: relative;
    margin-top: 20px;
}

.slider-track {
    position: absolute;
    height: 100%;
    background-color: var(--color-slider-blue);
    border-radius: 3px;
    width: 60%;
}

.slider-track.orange {
    background-color: var(--color-slider-orange);
    width: 40%;
}

.slider-thumb {
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid var(--color-slider-blue);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 60%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-thumb.orange {
    border-color: var(--color-slider-orange);
    left: 40%;
}

/* Результаты */
.result-container {
    margin-bottom: 20px;
}

.result-title {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 5px;
}

.result-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.rate-info {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 500;
}

/* Форма */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.form-control::placeholder {
    color: #BDBDBD;
}

.btn {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--color-primary-dark);
}

.btn:active {
    transform: translateY(1px);
}

/* Адаптивность */
@media (max-width: 992px) {
    .calculator-content {
        flex-direction: column;
    }

    .calculator-column {
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-image-container {
        margin-bottom: -50px;
    }

    .calculator {
        padding: 20px;
    }

    .result-value {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .calculator-tabs {
        justify-content: center;
    }

    .tab {
        padding: 8px 15px;
        margin-right: 10px;
    }

    .hero-image-container {
        margin-bottom: -30px;
    }

    .slider-value {
        font-size: 20px;
    }

    .result-value {
        font-size: 22px;
    }
}

/* Секция спецпредложений */
.special-offers-section {
    background-color: var(--color-background);
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 40px;
    text-align: center;
}

/* Карточки */
.offers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.offer-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

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

.offer-card:focus-within {
    outline: 3px solid var(--color-primary);
}

.offer-card.mint {
    background-color: #E8F5E9;
}

.offer-card.lavender {
    background-color: #F3E5F5;
}

.offer-card.peach {
    background-color: #FFEFD5;
}

.offer-card.mint:hover {
    background-color: #C8E6C9;
}

.offer-card.lavender:hover {
    background-color: #E1BEE7;
}

.offer-card.peach:hover {
    background-color: #FFE0B2;
}

.offer-image {
    margin: auto;
    object-fit: cover;
    display: block;
}

.offer-content {
    padding: 20px;
}

.offer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.offer-description {
    margin-bottom: 20px;
    color: var(--color-text-light);
}

/* Секция рекламного баннера */
.banner-section {
    padding: 60px 0;
}

.banner {
    background-color: var(--color-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.banner-content {
    flex: 1;
    padding: 40px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.banner-description {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.banner-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-image {

    object-fit: cover;
    display: block;
}

/* Секция "Как это работает?" */
.how-it-works-section {
    padding: 60px 0;
}

/* Шаги */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step {
    flex: 1;
    background-color: #FFFFFF;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-text-white);
}

.step-icon {
    font-size: 48px;
    margin: 20px 0;
}

.step-icon.blue {
    color: #2563eb;
}

.step-icon.green {
    color: #16a34a;
}

.step-icon.orange {
    color: #f59e0b;
}

.step-description {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.questions-banner {
    background-color: #fff9c4;
    border-radius: 12px;
    padding:  40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform  0.3s;
    width: 100%;
}

.questions-banner:hover {
    transform: translateY(-5px);
}

.questions-content {
    flex: 1;
}

.questions-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.questions-description {
    font-size: 18px;
    max-width: 600px;
}

.phone-number {
    font-weight: 700;
    color: var(--color-text-dark);
    transition: color var(--transition);
}

.phone-number:hover {
    color: var(--color-primary);
}

.phone-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
}

.phone-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition);
    cursor: pointer;
}

.phone-icon-circle:hover {
    transform: scale(1.05);
}

.phone-icon-circle:focus {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

.phone-icon {
    color: var(--color-primary);
    font-size: 48px;
}

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

.advantages__title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-primary);
}

.advantages__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.advantage-card {
    flex: 1 1 calc(25% - 30px);
    min-width: 250px;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.advantage-card:focus-within {
    outline: 2px solid  #333333;
}

.advantage-card__icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advantage-card__icon {
    font-size: 36px;
    color: #FFFFFF;
}

.advantage-card--green .advantage-card__icon-wrapper {
    background-color: #4CAF50;
}

.advantage-card--yellow .advantage-card__icon-wrapper {
    background-color:  #FFC107;
}

.advantage-card--blue .advantage-card__icon-wrapper {
    background-color: #2196F3;
}

.advantage-card--orange .advantage-card__icon-wrapper {
    background-color:#FF5722;
}

.advantage-card__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.advantage-card__description {
    font-size: 16px;
    color: #666;
}

.counter-section {
    background-color: #f5f0ff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.counter-title {
    font-family: 'AlimamaShuHeiTi', sans-serif;
    color: #333333;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.counter-digits {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.digit {
    background-color: #ffffff;
    width: 100px;
    height: 120px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: calc(var(--i) * 0.2s);
    opacity: 0;
    transform: translateY(20px);
}

.digit-value {
    font-size: 64px;
    font-weight: bold;
    color: #2ecc71;
}

.counter-subtitle {
    color: #666666;
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.icons-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: float 3s infinite ease-in-out;
}

.icon i {
    font-size: 22px;
}

.icon-1 {
    top: 15%;
    left: 15%;
    background-color: #ff7675;
    animation-delay: 0.2s;
}

.icon-2 {
    top: 25%;
    right: 15%;
    background-color: #74b9ff;
    animation-delay: 0.5s;
}

.icon-3 {
    bottom: 20%;
    left: 20%;
    background-color: #fdcb6e;
    animation-delay: 0.8s;
}

.icon-4 {
    bottom: 25%;
    right: 20%;
    background-color:  #a29bfe;
    animation-delay: 1.1s;
}

.icon-5 {
    top: 50%;
    left: 10%;
    background-color: #74b9ff;
    animation-delay: 1.4s;
}

.icon-6 {
    top: 45%;
    right: 10%;
    background-color: #ff7675;
    animation-delay: 1.7s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.testimonials-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.testimonials-title {
    font-size: 32px;
    font-weight: bold;
    color:  #333333;
}

.navigation-controls {
    display: flex;
    gap: 12px;
}

.nav-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #27ae60;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.2);
}

.nav-button:hover {
    background-color: #219653;
    transform: translateY(-2px);
}

.nav-button:active {
    transform: translateY(0);
}

.nav-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.3);
}

.nav-button:disabled {
    background-color: #999999;
    cursor: not-allowed;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 10px 0;
}

.testimonial-card {
    min-width: calc(25% - 15px);
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-author {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #333333;
}

.testimonial-text {
    font-size: 16px;
    color: #666666;
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.7;
}

.testimonial-date {
    font-size: 14px;
    color:  #999999;
    align-self: flex-end;
}

.requirements-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.requirements-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.requirement-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 160px;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.requirement-card:focus-within {
    outline: 3px solid rgba(0, 123, 255, 0.3);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper.blue {
    background-color: rgba(0, 123, 255, 0.1);
    color: #ff9800;
}

.icon-wrapper.orange {
    background-color: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.icon-wrapper.yellow {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.icon-wrapper.green {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.icon-wrapper i {
    font-size: 28px;
}

.requirement-text {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}

.prolongation-section {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: all 0.3s ease;
}

.prolongation-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.prolongation-title {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    margin-right: 10px;
}

.info-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #2E9E5B;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.prolongation-content {
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
}

.highlight {
    font-weight: 500;
    color: #333333;
}

.more-link {
    display: inline-block;
    color: #2E9E5B;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.more-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #2E9E5B;
    transition: all 0.3s ease;
}

.more-link:hover {
    color: #248A4C;
}

.more-link:hover:after {
    width: 100%;
    background-color: #248A4C;
}

.more-link:focus {
    outline: 2px solid #2E9E5B;
    outline-offset: 2px;
}

.more-link:active {
    color: #1D7A40;
}

.footer {
    background-color: #FFFFFF;
    padding: 60px 0 20px;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-col-brand {
    width: 25%;
}

.footer-col-nav {
    width: 20%;
}

.footer-col-legal {
    width: 35%;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo-icon {
    color: #4CAF50;
    font-size: 24px;
    margin-right: 8px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
}

.footer-contact {
    margin-bottom: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #333333;
    text-decoration: none;
}

.footer-contact-item i {
    margin-right: 10px;
    color: #4CAF50;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #81C784;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-btn:hover {
    background-color: #4CAF50;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.footer-btn i {
    margin-right: 8px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333333;
}

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

.footer-nav-item {
    margin-bottom: 12px;
}

.footer-nav-link {
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: #4CAF50;
}

.footer-legal-info {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
}

.footer-legal-list {
    list-style: none;
    font-size: 14px;
    color: #666666;
}

.footer-legal-item {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.footer-legal-item:before {
    content: "•";
    position: absolute;
    left: 0;
    color:  #4CAF50;
}

.footer-divider {
    height: 1px;
    background-color: #E0E0E0;
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #999999;
}

.footer-copyright {
    margin-right: 20px;
}

.footer-developer {
    display: flex;
    align-items: center;
}

.footer-developer-link {
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 5px;
}

.footer-developer-link:hover {
    color: #4CAF50;
}

/* Адаптивность */
@media (max-width: 992px) {
    .offers-container {
        gap: 20px;
    }

    .section-title {
        font-size: 32px;
    }
    
    .footer-col-brand {
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-col-nav {
        width: 30%;
    }

    .footer-col-legal {
        width: 100%;
        order: 1;
        margin-top: 30px;
    }
    
    .advantage-card {
        flex: 1 1 calc(50% - 20px);
    }
    
    .requirements-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .offers-container {
        flex-direction: column;
        align-items: center;
    }

    .offer-card {
        width: 100%;
        max-width: 500px;
    }

    .section-title {
        font-size: 28px;
    }
    
    .banner {
        flex-direction: column;
    }

    .banner-content {
        padding: 30px;
        order: 1;
    }

    .banner-image-container {
        min-height: 250px;
        order: 0;
    }

    .banner-title {
        font-size: 24px;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 500px;
        width: 100%;
    }
    
    .questions-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .questions-content {
        margin-bottom: 30px;
    }

    .phone-icon-container {
        margin-left: 0;
    }

    .questions-title {
        font-size: 28px;
    }

    .questions-description {
        font-size: 16px;
    }
    
    .footer-content {
        flex-direction: column;
    }

    .footer-col {
        width: 100% !important;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-copyright {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .testimonial-card {
        min-width: calc(50% - 10px);
    }

    .testimonials-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .special-offers-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .offer-content {
        padding: 15px;
    }

    .offer-title {
        font-size: 18px;
    }
    
    .banner-section {
        padding: 40px 0;
    }

    .banner-content {
        padding: 20px;
    }

    .banner-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .banner-description {
        margin-bottom: 20px;
    }
    
    .step-number-container {
        width: 70px;
        height: 70px;
    }

    .step-number {
        font-size: 28px;
    }

    .step-icon-container {
        width: 50px;
        height: 50px;
    }

    .step-icon {
        font-size: 20px;
    }

    .step-description {
        font-size: 16px;
    }
    
    .questions-title {
        font-size: 24px;
    }

    .questions-description {
        font-size: 14px;
    }

    .phone-icon-circle {
        width: 80px;
        height: 80px;
    }

    .phone-icon {
        font-size: 36px;
    }
    
    .advantages__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .advantage-card {
        flex: 1 1 100%;
    }

    .advantages__container {
        gap: 20px;
    }
    
    .counter-digits {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .digit {
        width: 60px;
        height: 70px;
    }

    .digit-value {
        font-size: 36px;
    }

    .counter-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .counter-subtitle {
        font-size: 16px;
    }

    .counter-section {
        padding: 40px 20px;
    }
    
    .testimonial-card {
        min-width: 100%;
    }

    .testimonials-title {
        font-size: 24px;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .navigation-controls {
        align-self: flex-end;
    }
    
    .requirements-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .requirement-card {
        padding: 20px;
        min-height: auto;
    }

    .requirement-text {
        font-size: 16px;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .icon-wrapper i {
        font-size: 24px;
    }
    
    .prolongation-section {
        padding: 20px;
    }

    .prolongation-title {
        font-size: 20px;
    }

    .prolongation-content {
        font-size: 14px;
    }
}
/* End */


/* Start:/local/templates/ibcexchange/css/header-footer.css?17577932988021*/
/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1f2937;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: white;
    font-size: 1.25rem;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    gap: 0.5rem;
}

.phone:hover {
    color: #10b981;
}

.btn-account {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-account:hover {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
    padding: 0.5rem;
}

.header-nav {
    padding: 1rem 0;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover,
.nav-link.active {
    color: #10b981;
}

.nav-link i {
    font-size: 0.75rem;
}

/* Footer Styles */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    gap: 0.75rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #d1d5db;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: #10b981;
}

.footer-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.footer-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-link {
    text-decoration: none;
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: #10b981;
}

.footer-legal-info {
    margin-bottom: 1rem;
}

.footer-legal-info p {
    margin: 0.25rem 0;
    font-size: 0.875rem;
}

.footer-legal-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-legal-item {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.footer-legal-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.footer-divider {
    height: 1px;
    background: #374151;
    margin: 2rem 0 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #374151;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-developer {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-developer-link {
    color: #10b981;
    text-decoration: none;
}

.footer-developer-link:hover {
    text-decoration: underline;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-col-legal {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .header-contact {
        order: 3;
        width: 100%;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }
    
    .header-nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 0.75rem 0;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .phone {
        font-size: 0.875rem;
    }
    
    .btn-account {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
}

/* End */


/* Start:/local/templates/ibcexchange/css/notifications.css?17577932982852*/
/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-info {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.notification-success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.notification-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.notification-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Form Error Styles */
.form-control.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #10b981;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth transitions for all interactive elements */
a, button, input, select, textarea {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #10b981;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10001;
}

.skip-link:focus {
    top: 6px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .header {
        border-bottom: 2px solid #000;
    }
    
    .nav-link {
        border: 1px solid transparent;
    }
    
    .nav-link:hover,
    .nav-link.active {
        border-color: #10b981;
        background: rgba(16, 185, 129, 0.1);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-to-top {
        transition: none;
    }
    
    .notification {
        transition: none;
    }
}

/* End */


/* Start:/ibc/portfolio/v2/style.css?175770778648187*/
@font-face {
    font-family: 'AlimamaShuHeiTi';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/AlimamaShuHeiTi-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'MiSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MiSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'AlibabaSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/AlibabaSans-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AlibabaSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/AlibabaSans-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'AlibabaSans';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/Alibaba-PuHuiTi-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}
:root {
    /* Цветовая схема */
    --color-primary: #4CAF50;
    --color-primary-dark: #388E3C;
    --color-secondary: #FFC107;
    --color-text-dark: #333333;
    --color-text-light: #666666;
    --color-text-white: #FFFFFF;
    --color-background: #F5F0FF;
    --color-card: #FFFFFF;
    --color-slider-blue: #2196F3;
    --color-slider-orange: #FF9800;

    /* Размеры и отступы */
    --border-radius: 12px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}

body {
    background-color: #F5F5F5;
    color: var(--color-text-dark);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero секция */
.hero-section {

    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.star-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    margin-left: 8px;
    position: relative;
    top: -5px;
}

.star-icon::before {
    content: "★";
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

/* Изображение */
.hero-image-container {
    text-align: center;
    position: relative;
    margin-bottom: -80px; /* Отрицательный margin для наложения калькулятора */
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Калькулятор */
.calculator-container {
    position: relative;
    z-index: 2; /* Выше изображения */
    max-width: 1000px;
    margin: 0 auto;
}

.calculator {
    background-color: var(--color-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

/* Табы */
.calculator-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
}

.tab {
    padding: 10px 20px;
    margin-right: 20px;
    cursor: pointer;
    font-weight: 500;
    position: relative;
}

.tab.active {
    color: var(--color-primary);
}

.tab.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
}

/* Содержимое калькулятора */
.calculator-content {
    display: flex;
    flex-wrap: wrap;
}

.calculator-column {
    flex: 1;
    padding: 0 15px;
    min-width: 250px;
}

/* Слайдеры */
.slider-container {
    margin-bottom: 30px;
}

.slider-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.slider-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.slider {
    width: 100%;
    height: 6px;
    background-color: #E0E0E0;
    border-radius: 3px;
    position: relative;
    margin-top: 20px;
}

.slider-track {
    position: absolute;
    height: 100%;
    background-color: var(--color-slider-blue);
    border-radius: 3px;
    width: 60%;
}

.slider-track.orange {
    background-color: var(--color-slider-orange);
    width: 40%;
}

.slider-thumb {
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid var(--color-slider-blue);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 60%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-thumb.orange {
    border-color: var(--color-slider-orange);
    left: 40%;
}

/* Результаты */
.result-container {
    margin-bottom: 20px;
}

.result-title {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 5px;
}

.result-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.rate-info {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 500;
}

/* Форма */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.form-control::placeholder {
    color: #BDBDBD;
}

.btn {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--color-primary-dark);
}

.btn:active {
    transform: translateY(1px);
}

/* Адаптивность */
@media (max-width: 992px) {
    .calculator-content {
        flex-direction: column;
    }

    .calculator-column {
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-image-container {
        margin-bottom: -50px;
    }

    .calculator {
        padding: 20px;
    }

    .result-value {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .calculator-tabs {
        justify-content: center;
    }

    .tab {
        padding: 8px 15px;
        margin-right: 10px;
    }

    .hero-image-container {
        margin-bottom: -30px;
    }

    .slider-value {
        font-size: 20px;
    }

    .result-value {
        font-size: 22px;
    }
}
:root {
    --primary-color: #2ecc71;
    --secondary-color: #16a34a;
    --primary-dark: #27ae60;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --header-height: 140px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    font-size: 24px;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.header-contact {
    display: flex;
    align-items: center;
}

.phone {
    margin-right: 20px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.phone i {
    margin-right: 8px;
    color: var(--primary-color);
}

.btn-account {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.btn-account:hover {
    background-color: var(--primary-dark);
}

.btn-account i {
    margin-right: 8px;
}

.header-nav {
    padding: 15px 0;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 10px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link i {
    margin-left: 5px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .nav-list {
        justify-content: flex-start;
        gap: 15px;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .nav-list::-webkit-scrollbar {
        height: 3px;
    }

    .nav-list::-webkit-scrollbar-thumb {
        background-color: var(--medium-gray);
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
    }

    .header-contact {
        margin-top: 10px;
        width: 100%;
        justify-content: space-between;
    }

    .phone {
        margin-right: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-nav {
        display: none;
        padding: 0;
    }

    .header-nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        padding: 10px 0;
    }

    .nav-item {
        margin: 10px 0;
    }
}

/* Accessibility focus styles */
a:focus, button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}
:root {
    /* Цветовая схема */
    --color-primary: #4CAF50;
    --color-primary-dark: #388E3C;
    --color-secondary: #FFC107;
    --color-text-dark: #333333;
    --color-text-light: #666666;
    --color-text-white: #FFFFFF;
    --color-background: #F5F0FF;
    --color-card: #FFFFFF;
    --color-slider-blue: #2196F3;
    --color-slider-orange: #FF9800;

    /* Размеры и отступы */
    --border-radius: 12px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}

body {
    background-color: #F5F5F5;
    color: var(--color-text-dark);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero секция */
.hero-section {

    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.star-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    margin-left: 8px;
    position: relative;
    top: -5px;
}

.star-icon::before {
    content: "★";
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

/* Изображение */
.hero-image-container {
    text-align: center;
    position: relative;
    margin-bottom: -80px; /* Отрицательный margin для наложения калькулятора */
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Калькулятор */
.calculator-container {
    position: relative;
    z-index: 2; /* Выше изображения */
    max-width: 1000px;
    margin: 0 auto;
}

.calculator {
    background-color: var(--color-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

/* Табы */
.calculator-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
}

.tab {
    padding: 10px 20px;
    margin-right: 20px;
    cursor: pointer;
    font-weight: 500;
    position: relative;
}

.tab.active {
    color: var(--color-primary);
}

.tab.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
}

/* Содержимое калькулятора */
.calculator-content {
    display: flex;
    flex-wrap: wrap;
}

.calculator-column {
    flex: 1;
    padding: 0 15px;
    min-width: 250px;
}

/* Слайдеры */
.slider-container {
    margin-bottom: 30px;
}

.slider-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.slider-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.slider {
    width: 100%;
    height: 6px;
    background-color: #E0E0E0;
    border-radius: 3px;
    position: relative;
    margin-top: 20px;
}

.slider-track {
    position: absolute;
    height: 100%;
    background-color: var(--color-slider-blue);
    border-radius: 3px;
    width: 60%;
}

.slider-track.orange {
    background-color: var(--color-slider-orange);
    width: 40%;
}

.slider-thumb {
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid var(--color-slider-blue);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 60%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-thumb.orange {
    border-color: var(--color-slider-orange);
    left: 40%;
}

/* Результаты */
.result-container {
    margin-bottom: 20px;
}

.result-title {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 5px;
}

.result-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.rate-info {
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 500;
}

/* Форма */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E0E0E0;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.form-control::placeholder {
    color: #BDBDBD;
}

.btn {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--color-primary-dark);
}

.btn:active {
    transform: translateY(1px);
}

/* Адаптивность */
@media (max-width: 992px) {
    .calculator-content {
        flex-direction: column;
    }

    .calculator-column {
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-image-container {
        margin-bottom: -50px;
    }

    .calculator {
        padding: 20px;
    }

    .result-value {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .calculator-tabs {
        justify-content: center;
    }

    .tab {
        padding: 8px 15px;
        margin-right: 10px;
    }

    .hero-image-container {
        margin-bottom: -30px;
    }

    .slider-value {
        font-size: 20px;
    }

    .result-value {
        font-size: 22px;
    }
}
:root {
    /* Цветовая схема макета */
    --color-primary: #4CAF50; /* мятно-зеленый для кнопок */
    --color-primary-dark: #388E3C; /* темно-зеленый для hover */
    --color-text-dark: #333333;
    --color-text-light: #666666;
    --color-text-white: #FFFFFF;
    --color-background: #FFFFFF; /* белый фон */
    --color-card-1: #E8F5E9; /* светло-мятный */
    --color-card-2: #F3E5F5; /* светло-фиолетовый */
    --color-card-3: #FFEFD5; /* светло-персиковый */
    --color-card-1-hover: #C8E6C9; /* более насыщенный мятный */
    --color-card-2-hover: #E1BEE7; /* более насыщенный фиолетовый */
    --color-card-3-hover: #FFE0B2; /* более насыщенный персиковый */

    /* Размеры и отступы */
    --border-radius: 12px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}

body {
    background-color: #F5F5F5;
    color: var(--color-text-dark);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Секция спецпредложений */
.special-offers-section {
    background-color: var(--color-background);
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 40px;
    text-align: center;
}

/* Карточки */
.offers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.offer-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.offer-card:focus-within {
    outline: 3px solid var(--color-primary);
}

.offer-card.mint {
    background-color: var(--color-card-1);
}

.offer-card.lavender {
    background-color: var(--color-card-2);
}

.offer-card.peach {
    background-color: var(--color-card-3);
}

.offer-card.mint:hover {
    background-color: var(--color-card-1-hover);
}

.offer-card.lavender:hover {
    background-color: var(--color-card-2-hover);
}

.offer-card.peach:hover {
    background-color: var(--color-card-3-hover);
}

.offer-image {
    margin: auto;
    object-fit: cover;
    display: block;
}

.offer-content {
    padding: 20px;
}

.offer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.offer-description {
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 14px 20px;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background-color: var(--color-primary-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Адаптивность */
@media (max-width: 992px) {
    .offers-container {
        gap: 20px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .offers-container {
        flex-direction: column;
        align-items: center;
    }

    .offer-card {
        width: 100%;
        max-width: 500px;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .special-offers-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .offer-content {
        padding: 15px;
    }

    .offer-title {
        font-size: 18px;
    }

    .btn {
        padding: 12px 16px;
    }
}
/* Секция рекламного баннера */
.banner-section {
    padding: 60px 0;
}

.banner {
    background-color: var(--color-background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.banner-content {
    flex: 1;
    padding: 40px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.banner-description {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.banner-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-image {

    object-fit: cover;
    display: block;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    align-self: flex-start;
}

.btn:hover {
    background-color: var(--color-primary-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Адаптивность */
@media (max-width: 992px) {
    .banner-title {
        font-size: 28px;
    }

    .banner-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .banner {
        flex-direction: column;
    }

    .banner-content {
        padding: 30px;
        order: 1;
    }

    .banner-image-container {
        min-height: 250px;
        order: 0;
    }

    .banner-title {
        font-size: 24px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .banner-section {
        padding: 40px 0;
    }

    .banner-content {
        padding: 20px;
    }

    .banner-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .banner-description {
        margin-bottom: 20px;
    }
}
/* Секция "Как это работает?" */
.how-it-works-section {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 50px;
    text-align: center;
}

/* Шаги */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step {
    flex: 1;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step:nth-child(1) .step-number-container {
    background-color: var(--color-number-bg-1);
}

.step:nth-child(2) .step-number-container {
    background-color: var(--color-number-bg-2);
}

.step:nth-child(3) .step-number-container {
    background-color: var(--color-number-bg-3);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);


}

.step-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-text-white);
}

.step:nth-child(1) .step-icon-container {
    background-color: var(--color-secondary-blue);
}

.step:nth-child(2) .step-icon-container {
    background-color: var(--color-secondary-green);
}

.step:nth-child(3) .step-icon-container {
    background-color: var(--color-secondary-orange);
}

.step-icon {
    font-size: 24px;
}

.step-description {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    background-color: var(--color-primary-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Адаптивность */
@media (max-width: 992px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .steps-container {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 500px;
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .how-it-works-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .step-number-container {
        width: 70px;
        height: 70px;
    }

    .step-number {
        font-size: 28px;
    }

    .step-icon-container {
        width: 50px;
        height: 50px;
    }

    .step-icon {
        font-size: 20px;
    }

    .step-description {
        font-size: 16px;
    }
}

.step-icon.blue {
    color: #2563eb;
}

.step-icon.green {
    color: #16a34a;
}

.step-icon.orange {
    color: #f59e0b;
}

.step-description {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 20px;
    flex-grow: 1;
}
.step-icon {
    font-size: 48px;
    margin: 20px 0;
}
.questions-banner {
    background-color: #fff9c4;
    border-radius: 12px;
    padding:  40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform  0.3s;
    width: 100%;
}

.questions-banner:hover {
    transform: translateY(-5px);
}

.questions-content {
    flex: 1;
}

.questions-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.questions-description {
    font-size: 18px;
    max-width: 600px;
}

.phone-number {
    font-weight: 700;
    color: var(--text-color);
    transition: color var(--transition-speed);
}

.phone-number:hover {
    color: var(--primary-color);
}

.phone-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
}

.phone-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
    cursor: pointer;
}

.phone-icon-circle:hover {
    transform: scale(1.05);
}

.phone-icon-circle:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

.phone-icon {
    color: var(--primary-color);
    font-size: 48px;
}

@media (max-width: 768px) {
    .questions-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .questions-content {
        margin-bottom: 30px;
    }

    .phone-icon-container {
        margin-left: 0;
    }

    .questions-title {
        font-size: 28px;
    }

    .questions-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .questions-title {
        font-size: 24px;
    }

    .questions-description {
        font-size: 14px;
    }

    .phone-icon-circle {
        width: 80px;
        height: 80px;
    }

    .phone-icon {
        font-size: 36px;
    }
}

.advantages {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.advantages__title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-primary);
}

.advantages__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.advantage-card {
    flex: 1 1 calc(25% - 30px);
    min-width: 250px;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.advantage-card:focus-within {
    outline: 2px solid  #333333;
}

.advantage-card__icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.advantage-card__icon {
    font-size: 36px;
    color: #FFFFFF;
}

.advantage-card--green .advantage-card__icon-wrapper {
    background-color: #4CAF50;
}

.advantage-card--yellow .advantage-card__icon-wrapper {
    background-color:  #FFC107;
}

.advantage-card--blue .advantage-card__icon-wrapper {
    background-color: #2196F3;
}

.advantage-card--orange .advantage-card__icon-wrapper {
    background-color:#FF5722;
}

.advantage-card__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.advantage-card__description {
    font-size: 16px;
    color: #666;
}

@media (max-width: 992px) {
    .advantage-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .advantages__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .advantage-card {
        flex: 1 1 100%;
    }

    .advantages__container {
        gap: 20px;
    }
}


.counter-section {
    background-color: #f5f0ff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.counter-title {
    font-family: 'AlimamaShuHeiTi', sans-serif;
    color: #333333;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.counter-digits {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.digit {
    background-color: #ffffff;
    width: 100px;
    height: 120px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: calc(var(--i) * 0.2s);
    opacity: 0;
    transform: translateY(20px);
}

.digit-value {
    font-size: 64px;
    font-weight: bold;
    color: #2ecc71;
}

.counter-subtitle {
    color: #666666;
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.icons-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.icon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: float 3s infinite ease-in-out;
}

.icon i {
    font-size: 22px;
}

.icon-1 {
    top: 15%;
    left: 15%;
    background-color: #ff7675;
    animation-delay: 0.2s;
}

.icon-2 {
    top: 25%;
    right: 15%;
    background-color: #74b9ff;
    animation-delay: 0.5s;
}

.icon-3 {
    bottom: 20%;
    left: 20%;
    background-color: #fdcb6e;
    animation-delay: 0.8s;
}

.icon-4 {
    bottom: 25%;
    right: 20%;
    background-color:  #a29bfe;
    animation-delay: 1.1s;
}

.icon-5 {
    top: 50%;
    left: 10%;
    background-color: #74b9ff;
    animation-delay: 1.4s;
}

.icon-6 {
    top: 45%;
    right: 10%;
    background-color: #ff7675;
    animation-delay: 1.7s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 992px) {
    .container {
        width: 100%;
        padding: 15px;
    }

    .counter-title {
        font-size: 30px;
    }

    .digit {
        width: 80px;
        height: 100px;
    }

    .digit-value {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .counter-title {
        font-size: 26px;
    }

    .digit {
        width: 65px;
        height: 80px;
    }

    .digit-value {
        font-size: 40px;
    }

    .counter-subtitle {
        font-size: 18px;
    }

    .icon {
        width: 35px;
        height: 35px;
    }

    .icon i {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .counter-digits {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .digit {
        width: 60px;
        height: 70px;
    }

    .digit-value {
        font-size: 36px;
    }

    .counter-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .counter-subtitle {
        font-size: 16px;
    }

    .counter-section {
        padding: 40px 20px;
    }
}

.testimonials-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.testimonials-title {
    font-size: 32px;
    font-weight: bold;
    color:  #333333;
}

.navigation-controls {
    display: flex;
    gap: 12px;
}

.nav-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #27ae60;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.2);
}

.nav-button:hover {
    background-color: #219653;
    transform: translateY(-2px);
}

.nav-button:active {
    transform: translateY(0);
}

.nav-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.3);
}

.nav-button:disabled {
    background-color: #999999;
    cursor: not-allowed;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 10px 0;
}

.testimonial-card {
    min-width: calc(25% - 15px);
    background-color: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-author {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #333333;
}

.testimonial-text {
    font-size: 16px;
    color: #666666;
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.7;
}

.testimonial-date {
    font-size: 14px;
    color:  #999999;
    align-self: flex-end;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonial-card {
        min-width: calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: calc(50% - 10px);
    }

    .testimonials-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        min-width: 100%;
    }

    .testimonials-title {
        font-size: 24px;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .navigation-controls {
        align-self: flex-end;
    }
}

.requirements-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin-bottom: 40px;
}

.requirements-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


.requirement-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 160px;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.requirement-card:focus-within {
    outline: 3px solid rgba(0, 123, 255, 0.3);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper.blue {
    background-color: rgba(0, 123, 255, 0.1);
    color: #ff9800;
}

.icon-wrapper.orange {
    background-color: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.icon-wrapper.yellow {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.icon-wrapper.green {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.icon-wrapper i {
    font-size: 28px;
}

.requirement-text {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 992px) {
    .requirements-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .requirements-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .requirement-card {
        padding: 20px;
        min-height: auto;
    }

    .requirement-text {
        font-size: 16px;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .icon-wrapper i {
        font-size: 24px;
    }
}

.prolongation-section {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: all 0.3s ease;
}

.prolongation-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.prolongation-title {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    margin-right: 10px;
}

.info-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #2E9E5B;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.prolongation-content {
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
}

.highlight {
    font-weight: 500;
    color: #333333;
}

.more-link {
    display: inline-block;
    color: #2E9E5B;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.more-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #2E9E5B;
    transition: all 0.3s ease;
}

.more-link:hover {
    color: #248A4C;
}

.more-link:hover:after {
    width: 100%;
    background-color: #248A4C;
}

.more-link:focus {
    outline: 2px solid #2E9E5B;
    outline-offset: 2px;
}

.more-link:active {
    color: #1D7A40;
}

@media (max-width: 768px) {
    .prolongation-section {
        padding: 20px;
    }

    .prolongation-title {
        font-size: 20px;
    }

    .prolongation-content {
        font-size: 14px;
    }
}

.footer {
    background-color: #FFFFFF;
    padding: 60px 0 20px;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-col-brand {
    width: 25%;
}

.footer-col-nav {
    width: 20%;
}

.footer-col-legal {
    width: 35%;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo-icon {
    color: #4CAF50;
    font-size: 24px;
    margin-right: 8px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
}

.footer-contact {
    margin-bottom: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #333333;
    text-decoration: none;
}

.footer-contact-item i {
    margin-right: 10px;
    color: #4CAF50;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #81C784;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-btn:hover {
    background-color: #4CAF50;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.footer-btn i {
    margin-right: 8px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333333;
}

.footer-nav {
    list-style: none;
}

.footer-nav-item {
    margin-bottom: 12px;
}

.footer-nav-link {
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: #4CAF50;
}

.footer-legal-info {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
}

.footer-legal-list {
    list-style: none;
    font-size: 14px;
    color: #666666;
}

.footer-legal-item {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.footer-legal-item:before {
    content: "•";
    position: absolute;
    left: 0;
    color:  #4CAF50;
}

.footer-divider {
    height: 1px;
    background-color: #E0E0E0;
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #999999;
}

.footer-copyright {
    margin-right: 20px;
}

.footer-developer {
    display: flex;
    align-items: center;
}

.footer-developer-link {
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 5px;
}

.footer-developer-link:hover {
    color: #4CAF50;
}

@media (max-width: 992px) {
    .footer-col-brand {
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-col-nav {
        width: 30%;
    }

    .footer-col-legal {
        width: 100%;
        order: 1;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-col {
        width: 100% !important;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-copyright {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
/* End */
/* /css/dashboard.css?17564953337036 */
/* /local/templates/ibcexchange/template_styles.css?175777737228813 */
/* /local/templates/ibcexchange/css/header-footer.css?17577932988021 */
/* /local/templates/ibcexchange/css/notifications.css?17577932982852 */
/* /ibc/portfolio/v2/style.css?175770778648187 */
