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

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

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

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

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

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

/* Основные условия */
.mv-fun-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 48px 0;
}

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

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

.mv-fun-feature-value {
    font-size: 32px;
    font-weight: 700;
    color: #1f2a3a;
    margin-bottom: 8px;
}

.mv-fun-feature-label {
    font-size: 14px;
    color: #54656f;
}

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

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

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

.mv-fun-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-fun-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 12px 0;
}

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

/* Преимущества */
.mv-fun-advantages {
    margin: 48px 0;
}

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

.mv-fun-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mv-fun-advantage {
    background: #f9fafc;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    padding: 24px;
    transition: box-shadow 0.2s ease;
}

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

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

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

/* Важная информация */
.mv-fun-notice {
    margin: 48px 0;
    padding: 32px;
    background: #fff8e6;
    border: 1px solid #eaeef2;
    border-radius: 16px;
    border-left: 4px solid #fff300;
}

.mv-fun-notice-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2a3a;
    margin: 0 0 16px 0;
}

.mv-fun-notice p {
    font-size: 15px;
    line-height: 1.6;
    color: #54656f;
    margin: 0 0 12px 0;
}

.mv-fun-notice p:last-child {
    margin-bottom: 0;
}

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

.mv-fun-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-fun-cta-button:hover {
    background: #2c3a4f;
}

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

@media (max-width: 768px) {
    .mv-fun-logo img {
        max-width: 160px;
    }
    
    .mv-fun-description {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .mv-fun-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .mv-fun-feature-value {
        font-size: 28px;
    }
    
    .mv-fun-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .mv-fun-advantages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .mv-fun-notice {
        padding: 24px;
    }
    
    .mv-fun-cta-button {
        padding: 14px 32px;
    }
}

@media (max-width: 480px) {
    .mv-fun-logo img {
        max-width: 140px;
    }
    
    .mv-fun-features {
        grid-template-columns: 1fr;
    }
    
    .mv-fun-feature {
        padding: 20px;
    }
    
    .mv-fun-feature-value {
        font-size: 28px;
    }
    
    .mv-fun-step {
        padding: 20px 16px;
    }
    
    .mv-fun-step-title {
        font-size: 16px;
    }
    
    .mv-fun-advantage {
        padding: 20px 16px;
    }
    
    .mv-fun-advantage-title {
        font-size: 16px;
    }
    
    .mv-fun-notice {
        padding: 20px 16px;
    }
    
    .mv-fun-notice p {
        font-size: 14px;
    }
    
    .mv-fun-cta-button {
        padding: 14px 24px;
        width: 100%;
        text-align: center;
    }
}