/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ FINSHOP ===== */

/* Логотип */
.mv-finshop-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.mv-finshop-logo img {
    max-width: 200px;
    height: auto;
}

/* Описание */
.mv-finshop-description {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #54656f;
}

.mv-finshop-description p {
    margin: 0;
}

.mv-finshop-description strong {
    color: #1f2a3a;
    font-weight: 600;
}

/* Банки-партнеры */
.mv-finshop-banks {
    margin: 48px 0;
    text-align: center;
}

.mv-finshop-banks-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 24px 0;
    text-align: center;
}

.mv-finshop-banks-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px 40px;
    margin: 0 auto 16px;
    max-width: 1000px;
}

.mv-finshop-bank-item {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.2s ease;
}

.mv-finshop-bank-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.mv-finshop-bank-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mv-finshop-banks-note {
    font-size: 13px;
    color: #7e8c9e;
    margin: 16px 0 0 0;
}

/* Шаги оформления */
.mv-finshop-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 48px 0;
}

.mv-finshop-step {
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    padding: 24px 20px;
    position: relative;
    transition: box-shadow 0.2s ease;
}

.mv-finshop-step:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: #d0d7de;
}

.mv-finshop-step-number {
    width: 36px;
    height: 36px;
    background: #fff300;
    color: #1f2a3a;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.mv-finshop-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 12px 0;
}

.mv-finshop-step-text {
    font-size: 14px;
    line-height: 1.5;
    color: #54656f;
    margin: 0;
}

/* Преимущества */
.mv-finshop-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.mv-finshop-feature {
    background: white;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: box-shadow 0.2s ease;
}

.mv-finshop-feature:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: #d0d7de;
}

.mv-finshop-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 12px 0;
}

.mv-finshop-feature-text {
    font-size: 14px;
    line-height: 1.5;
    color: #54656f;
    margin: 0;
}

/* Инструкция */
.mv-finshop-instruction {
    margin: 48px 0;
    padding: 32px;
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    text-align: center;
}

.mv-finshop-instruction p {
    font-size: 16px;
    color: #54656f;
    margin: 0 0 20px 0;
}

.mv-finshop-button {
    display: inline-block;
    padding: 14px 28px;
    background: #fff300;
    color: #1f2a3a;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease;
    border: none;
    cursor: pointer;
}

.mv-finshop-button:hover {
    background: #e6d900;
}

/* О компании */
.mv-finshop-about {
    margin: 48px 0;
    padding: 32px;
    background: white;
    border: 1px solid #eaeef2;
    border-radius: 16px;
}

.mv-finshop-about p {
    font-size: 15px;
    line-height: 1.6;
    color: #54656f;
    margin: 0 0 16px 0;
}

.mv-finshop-about p:last-child {
    margin-bottom: 0;
}

/* Кнопка CTA */
.mv-finshop-cta {
    margin: 48px 0 32px;
    text-align: center;
}

.mv-finshop-cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #1f2a3a;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s ease;
    border: none;
    cursor: pointer;
}

.mv-finshop-cta-button:hover {
    background: #2c3a4f;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .mv-finshop-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .mv-finshop-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .mv-finshop-logo img {
        max-width: 160px;
    }
    
    .mv-finshop-description {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .mv-finshop-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .mv-finshop-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .mv-finshop-banks-grid {
        gap: 20px;
    }
    
    .mv-finshop-bank-item {
        width: 100px;
        height: 50px;
    }
    
    .mv-finshop-instruction {
        padding: 24px;
    }
    
    .mv-finshop-about {
        padding: 24px;
    }
    
    .mv-finshop-cta-button {
        padding: 14px 32px;
    }
}

@media (max-width: 480px) {
    .mv-finshop-logo img {
        max-width: 140px;
    }
    
    .mv-finshop-banks-grid {
        gap: 16px;
    }
    
    .mv-finshop-bank-item {
        width: 80px;
        height: 40px;
    }
    
    .mv-finshop-step {
        padding: 20px 16px;
    }
    
    .mv-finshop-step-title {
        font-size: 16px;
    }
    
    .mv-finshop-feature {
        padding: 20px 16px;
    }
    
    .mv-finshop-feature-title {
        font-size: 16px;
    }
    
    .mv-finshop-instruction {
        padding: 20px 16px;
    }
    
    .mv-finshop-button {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }
    
    .mv-finshop-cta-button {
        padding: 14px 24px;
        width: 100%;
        text-align: center;
    }
}