

/* Start:/css/ibc-money.css?175655748618174*/
/* IBC Money - Основные стили */
:root {
    /* Основная палитра на основе #57B18A */
    --primary-color: #57B18A;           /* Основной зеленый */
    --primary-dark: #4A9A7A;            /* Темный зеленый */
    --primary-light: #7BC4A3;           /* Светлый зеленый */
    --primary-lighter: #A3D4C0;         /* Очень светлый зеленый */
    --primary-lightest: #E8F5F0;        /* Самый светлый зеленый */
    
    /* Дополнительные цвета */
    --secondary-color: #4A90E2;         /* Синий */
    --secondary-dark: #3A7BC8;          /* Темный синий */
    --secondary-light: #6BA3E8;         /* Светлый синий */
    
    /* Акцентные цвета */
    --accent-color: #F5A623;            /* Оранжевый */
    --accent-dark: #E0941A;             /* Темный оранжевый */
    --accent-light: #F7B84A;            /* Светлый оранжевый */
    
    /* Нейтральные цвета */
    --text-primary: #2C3E50;            /* Основной текст */
    --text-secondary: #7F8C8D;          /* Вторичный текст */
    --text-light: #BDC3C7;              /* Светлый текст */
    
    /* Фоновые цвета */
    --bg-primary: #FFFFFF;              /* Основной фон */
    --bg-secondary: #F8F9FA;            /* Вторичный фон */
    --bg-accent: var(--primary-lightest); /* Акцентный фон */
    
    /* Границы */
    --border-color: #E9ECEF;            /* Цвет границ */
    --border-light: #F1F3F4;            /* Светлые границы */
    
    /* Тени */
    --shadow-light: 0 2px 8px rgba(87, 177, 138, 0.1);
    --shadow-medium: 0 4px 16px rgba(87, 177, 138, 0.15);
    --shadow-heavy: 0 8px 32px rgba(87, 177, 138, 0.2);
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    --gradient-light: linear-gradient(135deg, var(--primary-lightest) 0%, #FFFFFF 100%);
}

/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

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

/* Кнопки */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-success {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Заголовки */
.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.2;
}

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

/* Hero Section */
.hero {
    background: var(--gradient-light);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%2357B18A" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%2357B18A" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%2357B18A" opacity="0.1"/></svg>');
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    max-width: 500px;
}

.hero-right {
    text-align: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

/* Калькулятор */
.calculator {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-heavy);
    margin-top: 30px;
}

.calculator-tabs {
    display: flex;
    margin-bottom: 30px;
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 5px;
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-light);
}

.calculator-row {
    margin-bottom: 25px;
}

.calculator-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: var(--shadow-light);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-light);
}

.slider-value {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 80px;
    text-align: right;
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(87, 177, 138, 0.1);
}

.calculator-result {
    background: var(--bg-accent);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.result-item:last-child {
    margin-bottom: 0;
}

.result-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.result-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.result-note {
    font-size: 12px;
    color: var(--text-light);
    margin-left: 5px;
}

/* Спецпредложения */
.special-offers {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.offer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-accent);
    border-radius: 50%;
}

.offer-icon img {
    width: 50px;
    height: 50px;
}

.offer-card h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
}

/* Рекламный баннер */
.ad-banner {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.banner-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-left p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner-right img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

/* Как это работает */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-primary);
}

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

.step {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

.step h3 {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Блок вопросов */
.questions-block {
    padding: 60px 0;
    background: var(--bg-accent);
}

.questions-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.questions-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.questions-left p {
    font-size: 18px;
    color: var(--text-secondary);
}

.questions-right {
    text-align: center;
}

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

/* Преимущества */
.advantages {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.advantage:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.advantage-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.advantage h3 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

/* Счетчик */
.counter {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.counter-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.counter-icon {
    font-size: 40px;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    margin: 0 20px;
}

.counter-text {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
}

/* Отзывы */
.reviews {
    padding: 80px 0;
    background: var(--bg-primary);
}

.reviews-slider {
    position: relative;
}

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

.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-card h4 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.review-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-date {
    color: var(--text-light);
    font-size: 14px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Требования */
.requirements {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.requirement:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.requirement-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    flex-shrink: 0;
}

.requirement p {
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.5;
}

/* Пролонгация */
.prolongation {
    padding: 60px 0;
    background: var(--bg-accent);
}

.prolongation-content {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.prolongation-icon {
    font-size: 50px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.prolongation-text h3 {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.prolongation-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

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

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.footer-phone {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.legal-info {
    margin-bottom: 20px;
}

.legal-info p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 5px;
}

.regulatory-info {
    margin-bottom: 20px;
}

.regulatory-info ul {
    list-style: none;
    margin-bottom: 20px;
}

.regulatory-info ul li {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 5px;
}

.regulatory-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.regulatory-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.regulatory-links a:hover {
    color: var(--primary-light);
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-copyright a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--primary-light);
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .questions-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .prolongation-content {
        flex-direction: column;
        text-align: center;
    }
    
    .counter-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .regulatory-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .calculator {
        padding: 20px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

/* End */
/* /css/ibc-money.css?175655748618174 */
