

/* Start:/css/styles.css?175656048915041*/
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #57B18A 0%, #4A9A7A 100%);
    box-shadow: 0 4px 20px rgba(87, 177, 138, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.logo-link:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.02);
}

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

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #A3D4C0;
}

.nav-list a.active {
    color: #A3D4C0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 8px 12px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    font-weight: 600;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

/* Мобильное меню */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #57B18A 0%, #4A9A7A 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .nav-list li {
        width: 100%;
        text-align: center;
    }
    
    .nav-list a {
        display: block;
        padding: 15px;
        font-size: 18px;
        border-radius: 8px;
        color: white;
        font-weight: 600;
    }
    
    .nav-list a:hover {
        background: rgba(255, 255, 255, 0.15);
        color: #A3D4C0;
    }
    
    .header-right {
        gap: 15px;
    }
    
    .phone {
        display: none;
    }
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #57B18A 0%, #4A9A7A 100%);
    color: white;
    border: 2px solid #57B18A;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4A9A7A 0%, #3A8A6A 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(87, 177, 138, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #57B18A 0%, #4A9A7A 100%);
    color: white;
    border: 2px solid #57B18A;
}

.btn-success:hover {
    background: #4A9A7A;
}

.btn-outline {
    background: transparent;
    color: #57B18A;
    border: 2px solid #57B18A;
}

.btn-outline:hover {
    background: #57B18A;
    color: white;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E8F5E8 0%, #F1F8E9 100%);
    padding: 80px 0;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1B5E20;
    margin-bottom: 40px;
    line-height: 1.2;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Calculator */
.calculator {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.calculator-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #E0E0E0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 30px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn.active {
    border-bottom-color: #2E7D32;
    color: #2E7D32;
}

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

.calculator-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

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

.slider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #E0E0E0;
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2E7D32;
    cursor: pointer;
}

.slider-value {
    font-weight: 600;
    color: #2E7D32;
    min-width: 80px;
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.input-field:focus {
    outline: none;
    border-color: #2E7D32;
}

.calculator-result {
    background: #F5F5F5;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

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

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

.result-label {
    color: #666;
}

.result-value {
    font-weight: 600;
    color: #2E7D32;
    font-size: 18px;
}

.result-note {
    font-size: 12px;
    color: #999;
    margin-left: 5px;
}

/* Section Titles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1B5E20;
}

/* Special Offers */
.special-offers {
    padding: 80px 0;
    background: #fff;
}

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

.offer-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.offer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.offer-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Ad Banner */
.ad-banner {
    background: linear-gradient(135deg, #FFE082 0%, #FFF3E0 100%);
    padding: 60px 0;
}

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

.banner-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #E65100;
    margin-bottom: 20px;
}

.banner-left p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.banner-right img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 20px;
}

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

.step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

/* Questions Block */
.questions-block {
    background: linear-gradient(135deg, #2E5A3D 0%, #1A3D2A 100%);
    padding: 60px 0;
    color: white;
}

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

.questions-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #A3D4C0;
    margin-bottom: 15px;
}

.questions-left p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.phone-icon {
    font-size: 80px;
    color: #57B18A;
}

/* Advantages */
.advantages {
    padding: 80px 0;
    background: white;
}

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

.advantage {
    text-align: center;
    padding: 30px 20px;
}

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

.advantage h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Counter */
.counter {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    padding: 80px 0;
    color: white;
}

.counter .section-title {
    color: white;
}

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

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

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

.counter-text {
    font-size: 24px;
    font-weight: 500;
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: #f9f9f9;
}

.reviews-slider {
    position: relative;
}

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

.review-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.review-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2E7D32;
    margin-bottom: 15px;
}

.review-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-date {
    font-size: 14px;
    color: #999;
}

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

.slider-btn {
    width: 50px;
    height: 50px;
    border: 2px solid #2E7D32;
    background: white;
    color: #2E7D32;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: #2E7D32;
    color: white;
}

/* Requirements */
.requirements {
    padding: 80px 0;
    background: white;
}

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

.requirement {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
}

.requirement-icon {
    font-size: 24px;
    color: #2E7D32;
    flex-shrink: 0;
}

.requirement p {
    color: #666;
    line-height: 1.6;
}

/* Prolongation */
.prolongation {
    background: #E3F2FD;
    padding: 60px 0;
}

.prolongation-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.prolongation-icon {
    font-size: 48px;
    color: #1976D2;
    flex-shrink: 0;
}

.prolongation-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1976D2;
    margin-bottom: 15px;
}

.prolongation-text p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1B5E20;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

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

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-phone {
    font-size: 20px;
    font-weight: 600;
}

.footer-email {
    color: #BDBDBD;
}

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4CAF50;
}

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

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

.footer-column a {
    color: #BDBDBD;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2E7D32;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legal-info p {
    color: #BDBDBD;
    font-size: 14px;
    margin-bottom: 10px;
}

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

.regulatory-info li {
    color: #BDBDBD;
    font-size: 14px;
    margin-bottom: 5px;
}

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

.regulatory-links a {
    color: #4CAF50;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.regulatory-links a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    color: #BDBDBD;
    font-size: 14px;
}

.footer-copyright a {
    color: #4CAF50;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .questions-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .counter-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .counter-number {
        font-size: 48px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .prolongation-content {
        flex-direction: column;
        text-align: center;
    }
}

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

/* End */


/* 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?175656023940567*/
/* IBC Money - Основные стили */

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

:root {
    /* Улучшенная цветовая палитра для МФО */
    --primary-color: #57B18A;
    --primary-hover: #4A9A7A;
    --primary-light: #E8F5F0;
    --secondary-color: #4A90E2;
    --accent-color: #F5A623;
    --success-color: #57B18A;
    --warning-color: #FF7043;
    --error-color: #E53935;
    --info-color: #42A5F5;

    /* Градиенты для современного вида */
    --gradient-primary: linear-gradient(135deg, #57B18A 0%, #4A9A7A 100%);
    --gradient-success: linear-gradient(135deg, #57B18A 0%, #4A9A7A 100%);
    --gradient-warning: linear-gradient(135deg, #FF7043 0%, #F4511E 100%);
    --gradient-accent: linear-gradient(135deg, #F5A623 0%, #E0941A 100%);

    /* Нейтральные цвета */
    --text-primary: #1A1A1A;
    --text-secondary: #6B7280;
    --text-light: #FFFFFF;
    --text-muted: #9CA3AF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-tertiary: #F3F4F6;
    --bg-dark: #1F2937;
    --border-color: #E5E7EB;
    --border-light: #F3F4F6;

    /* Современные тени */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Специальные тени для МФО */
    --shadow-card: 0 4px 6px -1px rgba(87, 177, 138, 0.1), 0 2px 4px -1px rgba(87, 177, 138, 0.06);
    --shadow-button: 0 4px 14px 0 rgba(87, 177, 138, 0.39);

    /* Переходы */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;

    /* Радиусы */
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 16px;

    /* Размеры */
    --header-height: 70px;
    --container-max-width: 1200px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Улучшенная типографическая иерархия */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.875rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }

p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.text-lg { font-size: 1.125rem; line-height: 1.6; }
.text-sm { font-size: 0.875rem; line-height: 1.5; }
.text-xs { font-size: 0.75rem; line-height: 1.4; }

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

/* Современные кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-light);
    border-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    min-width: 200px;
    border-radius: 14px;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
    min-width: 100px;
    border-radius: 8px;
}

/* Современный заголовок с элементами доверия */
.app-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 40px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo img {
    height: 36px;
    width: auto;
}

.trust-badges {
    display: flex;
    gap: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--success-color);
    font-size: 12px;
    font-weight: 500;
}

.badge-icon {
    color: var(--success-color);
    flex-shrink: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: width var(--transition-medium);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

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

.work-hours {
    font-size: 12px;
    color: var(--success-color);
    font-weight: 500;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-name {
    font-weight: 500;
    color: var(--text-primary);
}

/* Героическая секция */
.hero-section {
    background: linear-gradient(135deg, #E8F5E8 0%, #F1F8E9 100%);
    padding: 100px 0;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 125, 95, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 125, 95, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(46, 125, 95, 0.2);
}

.badge-icon {
    font-size: 16px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.text-gradient {
    background: linear-gradient(135deg, #2E7D5F 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.scroll-to {
    transition: all var(--transition-medium);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(46, 125, 95, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(46, 125, 95, 0.2);
}

/* Изображение героя */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-large);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* Плавающие карточки */
.floating-card {
    position: absolute;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    min-width: 120px;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: -15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 5%;
    left: -10%;
    animation-delay: 4s;
}

.card-header {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.card-rate {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.high-rate {
    color: var(--error-color);
}

.low-rate {
    color: var(--success-color);
}

.card-amount {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
}

.card-saving {
    font-size: 14px;
    color: var(--success-color);
    font-weight: 600;
}

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

/* Smooth scroll для кнопок */
html {
    scroll-behavior: smooth;
}

/* Секция визуализации данных */
.data-visualization-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}

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

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.visualization-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Диаграмма сравнения */
.chart-container {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.chart-container h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
}

.comparison-chart {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    height: 300px;
    padding: 20px 0;
}

.chart-bar {
    flex: 1;
    display: flex;
    align-items: end;
    position: relative;
}

.bar-fill {
    width: 100%;
    border-radius: 12px 12px 0 0;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 16px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: barGrow 1.5s ease-out;
}

@keyframes barGrow {
    from { height: 0 !important; }
    to { height: var(--final-height); }
}

.mfo-bar .bar-fill {
    background: var(--gradient-warning);
    --final-height: 90%;
}

.bank-bar .bar-fill {
    background: var(--gradient-success);
    --final-height: 12%;
}

.credit-bar .bar-fill {
    background: var(--gradient-accent);
    --final-height: 18%;
}

.bar-label {
    position: absolute;
    bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.2;
}

/* Карточки статистики */
.stats-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
}

.stat-card.danger::before {
    background: var(--gradient-warning);
}

.stat-card.warning::before {
    background: var(--gradient-accent);
}

.stat-card.success::before {
    background: var(--gradient-success);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.stat-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-card.danger .stat-value {
    color: var(--error-color);
}

.stat-card.warning .stat-value {
    color: var(--accent-color);
}

.stat-card.success .stat-value {
    color: var(--success-color);
}

.stat-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Блок рекомендаций */
.recommendation-block {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-secondary) 100%);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    border: 1px solid var(--border-light);
}

.recommendation-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.recommendation-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.recommendation-content ul {
    list-style: none;
    padding: 0;
}

.recommendation-content li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.recommendation-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 16px;
}

/* Превью дашборда */
.dashboard-preview {
    padding: 80px 0;
    background: var(--bg-primary);
}

.dashboard-preview h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-card {
    background: var(--bg-primary);
    padding: 32px 24px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-medium);
    text-align: center;
}

.dashboard-card:hover {
    transform: translateY(-4px);
}

.dashboard-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.balance-amount, .amount {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.balance-card .balance-amount {
    color: var(--primary-color);
}

.income-card .amount {
    color: var(--success-color);
}

.expense-card .amount {
    color: var(--error-color);
}

.savings-card .amount {
    color: var(--info-color);
}

.balance-change {
    font-size: 14px;
    font-weight: 500;
}

.balance-change.positive {
    color: var(--success-color);
}

.balance-change.negative {
    color: var(--error-color);
}

.period, .goal {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Секция возможностей */
.features-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.features-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-item {
    background: var(--bg-primary);
    padding: 40px 24px;
    border-radius: var(--radius-large);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-medium);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--text-light);
}

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

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* CTA секция */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--text-light);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

/* Футер */
.app-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-light);
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-section a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background var(--transition-fast);
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
}

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

.footer-bottom p {
    color: var(--text-light);
    opacity: 0.7;
    font-size: 14px;
}

/* Современный калькулятор МФО */
.loan-calculator-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.loan-calculator-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

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

.calculator-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.calculator-info p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.calculator-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.calculator-widget {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.calculator-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.calculator-form {
    padding: 40px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

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

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.input-with-suffix {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-suffix input {
    width: 100%;
    padding: 20px 70px 20px 24px;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xs);
}

.input-with-suffix input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card), 0 0 0 4px rgba(30, 136, 229, 0.1);
    transform: translateY(-1px);
}

.input-with-suffix input:hover:not(:focus) {
    border-color: var(--primary-hover);
    box-shadow: var(--shadow-sm);
}

.input-suffix {
    position: absolute;
    right: 24px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    pointer-events: none;
    background: var(--bg-tertiary);
    padding: 4px 8px;
    border-radius: 6px;
}

.range-slider {
    margin-top: 16px;
}

.range-slider input[type="range"] {
    width: 100%;
    height: 8px;
    background: var(--bg-secondary);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 2px solid var(--bg-primary);
    border-radius: 50%;
    cursor: pointer;
    -webkit-appearance: none;
    box-shadow: var(--shadow-light);
}

.range-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 2px solid var(--bg-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-light);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.range-labels span {
    font-size: 12px;
    color: var(--text-secondary);
}

.calculation-type h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.radio-group {
    display: flex;
    gap: 24px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    transition: all var(--transition-fast);
}

.radio-group input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-color);
}

.radio-group input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.calculation-results {
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.calculation-results h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
}

.result-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.result-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-primary);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: relative;
}

.result-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 16px 0 0 16px;
}

.result-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.result-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    flex-shrink: 0;
}

.result-icon svg {
    width: 24px;
    height: 24px;
}

.result-content {
    flex: 1;
}

.result-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

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

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* МФО специфичные стили */
.mfo-info {
    background: var(--bg-secondary);
    padding: 16px;
    border-radius: var(--radius-medium);
    margin-top: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

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

.mfo-calculation-details {
    padding: 0 24px 24px;
    max-height: 500px;
    overflow-y: auto;
}

.calculation-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.calculation-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.calculation-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.calculation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.calculation-row.total {
    font-weight: 600;
    font-size: 16px;
    border-top: 1px solid var(--border-color);
    margin-top: 12px;
    padding-top: 12px;
}

.warning-message {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid var(--warning-color);
    padding: 16px;
    border-radius: var(--radius-medium);
    margin-top: 16px;
    text-align: center;
    color: #E65100;
}

.comparison-table {
    background: var(--bg-secondary);
    padding: 16px;
    border-radius: var(--radius-medium);
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.high-rate {
    color: var(--error-color);
    font-weight: 600;
}

.medium-rate {
    color: var(--warning-color);
    font-weight: 500;
}

.low-rate {
    color: var(--success-color);
    font-weight: 500;
}

/* Модальное окно с графиком */
.schedule-modal-content {
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.schedule-summary {
    display: flex;
    justify-content: space-between;
    padding: 0 24px 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.summary-item .label {
    font-size: 14px;
    color: var(--text-secondary);
}

.summary-item .value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.schedule-table-container {
    flex: 1;
    overflow-y: auto;
    max-height: 500px;
    padding: 0 24px 24px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.schedule-table th {
    background: var(--bg-secondary);
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    position: sticky;
    top: 0;
    z-index: 1;
}

.schedule-table td {
    padding: 12px 8px;
    border-bottom: 1px solid var(--border-color);
}

.schedule-table tr:nth-child(even) {
    background: rgba(46, 125, 95, 0.02);
}

.schedule-table .month-cell {
    font-weight: 600;
    color: var(--text-primary);
}

.schedule-table .amount-cell {
    text-align: right;
    font-weight: 500;
}

.schedule-table .principal-cell {
    color: var(--primary-color);
}

.schedule-table .interest-cell {
    color: var(--warning-color);
}

.schedule-table .balance-cell {
    color: var(--text-secondary);
}

/* Адаптивность */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-content {
        flex-direction: column;
        height: auto;
        padding: 16px 0;
        gap: 20px;
    }

    .logo-section {
        flex-direction: column;
        gap: 12px;
    }

    .trust-badges {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .badge-item {
        font-size: 11px;
    }

    .main-nav {
        margin: 16px 0;
    }

    .main-nav ul {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .contact-info {
        align-items: center;
    }

    .phone {
        font-size: 14px;
    }

    /* Визуализация данных - мобильная */
    .visualization-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .comparison-chart {
        height: 200px;
        gap: 12px;
    }

    .bar-label {
        font-size: 10px;
        padding: 0 4px;
    }

    .recommendation-block {
        flex-direction: column;
        gap: 20px;
        padding: 32px 24px;
    }

    .recommendation-icon {
        font-size: 36px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .floating-card {
        position: static;
        margin: 10px;
        animation: none;
    }

    .card-1, .card-2, .card-3 {
        position: static;
        display: inline-block;
        margin: 8px;
    }

    .hero-features {
        align-items: center;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Адаптивность калькулятора */
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .calculator-info h2 {
        font-size: 28px;
    }

    .calculator-benefits {
        flex-direction: column;
    }

    .calculator-form,
    .calculation-results {
        padding: 24px;
    }

    .result-cards {
        gap: 12px;
    }

    .result-card {
        padding: 16px;
    }

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

    .schedule-summary {
        flex-direction: column;
        gap: 16px;
    }

    .schedule-table-container {
        padding: 0 16px 16px;
    }

    .schedule-table {
        font-size: 12px;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 8px 4px;
    }

    /* МФО адаптивные стили */
    .mfo-info {
        padding: 12px;
    }

    .info-item {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .mfo-calculation-details {
        padding: 0 16px 16px;
    }

    .calculation-row {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        padding: 12px 0;
    }

    .comparison-row {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .warning-message {
        padding: 12px;
        font-size: 14px;
    }
}

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

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .hero-features {
        gap: 12px;
    }

    .feature-item {
        font-size: 14px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    .floating-card {
        padding: 12px;
        min-width: 100px;
    }

    .dashboard-preview,
    .features-section,
    .cta-section {
        padding: 60px 0;
    }

    .dashboard-preview h2,
    .features-section h2,
    .cta-content h2 {
        font-size: 28px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ========================================
   ШАПКА "IBC MONEY"
   ======================================== */

/* Основные стили шапки */
.header {
    background: linear-gradient(135deg, #57B18A 0%, #4A9A7A 100%);
    box-shadow: 0 4px 20px rgba(87, 177, 138, 0.3);
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    min-height: 70px;
    flex-wrap: nowrap;
}

/* Логотип */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

/* Навигация */
.nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
}

.nav-list li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-list li a:hover {
    color: #A3D4C0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-list li a:hover::after {
    width: 80%;
}

.nav-list li a.active {
    color: #A3D4C0;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

.nav-list li a.active::after {
    width: 80%;
    background: #A3D4C0;
}

/* Правая часть шапки */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.phone {
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.phone:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    height: fit-content;
    min-height: 44px;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(87, 177, 138, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, #57B18A 0%, #4A9A7A 100%);
    color: white;
    border: 2px solid #57B18A;
}

.btn-success:hover {
    background: linear-gradient(135deg, #4A9A7A 0%, #3A8A6A 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(87, 177, 138, 0.4);
}

.btn-outline {
    background: transparent;
    color: #57B18A;
    border: 2px solid #57B18A;
}

.btn-outline:hover {
    background: #57B18A;
    color: white;
    transform: translateY(-2px);
}

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

/* Адаптивность для шапки */
@media (max-width: 1024px) {
    .nav-list {
        gap: 20px;
    }
    
    .nav-list li a {
        font-size: 14px;
        padding: 6px 10px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
        align-items: center;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        align-items: center;
    }
    
    .header-right {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .logo-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .nav-list {
        gap: 10px;
    }
    
    .nav-list li a {
        font-size: 13px;
        padding: 5px 8px;
    }
    
    .phone {
        font-size: 14px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 16px;
    }
}

/* End */
/* /css/styles.css?175656048915041 */
/* /css/dashboard.css?17564953337036 */
/* /local/templates/ibcexchange/template_styles.css?175656023940567 */
