/* Специфичные стили для лизинга */

.intro {
    text-align: center;
    margin-bottom: 3rem;
}

/* Новый блок преимуществ */
.leasing-benefits {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05), rgba(52, 152, 219, 0.05));
    border-radius: 12px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.leasing-benefits:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(52, 152, 219, 0.03)"/></svg>');
    background-size: cover;
    z-index: -1;
}

.benefits-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    justify-content: center;
}

.benefits-header h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
}

.benefits-header i {
    font-size: 2rem;
    color: var(--secondary);
}

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

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid var(--secondary);
}

.benefit-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-flex;
    width: 70px;
    height: 70px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #555;
    line-height: 1.6;
}

/* Преимущества лизинга */
.leasing-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.advantage-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--secondary);
}

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

.advantage-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Типы лизинга */
.leasing-types {
    margin: 4rem 0;
}

.type-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.type-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--secondary);
    transition: transform 0.3s ease;
}

.type-card:hover {
    transform: translateY(-3px);
}

.type-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Призыв к действию */
.leasing-cta {
    background: var(--light);
    padding: 3rem;
    border-radius: 10px;
    margin: 4rem 0;
}

.cta-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-text ul {
    margin: 1.5rem 0;
}

.cta-text li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1rem;
    display: block;
}

.cta-text li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.cta-btn {
    flex-shrink: 0;
}

/* Адаптивность для лизинга */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text ul {
        text-align: left;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}