/* Стили для блока удаленной помощи */
.remote-help {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
}

.remote-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

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

.remote-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.remote-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Unbounded', sans-serif;
}

.feature-text p {
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.remote-benefits {
    position: sticky;
    top: 120px;
}

.benefits-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
    text-align: center;
    font-family: 'Unbounded', sans-serif;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--primary);
    color: white;
}

.benefit-item:hover i {
    color: white;
}

.benefit-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.benefit-item span {
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.remote-download {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
}

.remote-download h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: 'Unbounded', sans-serif;
}

.remote-download p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
    font-family: 'Montserrat', sans-serif;
}

/* SEO блок */
.remote-seo {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.seo-content h3 {
    text-align: center;
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Unbounded', sans-serif;
}

.seo-content > p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--gray);
    font-family: 'Montserrat', sans-serif;
}

.seo-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.seo-service {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.seo-service:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.seo-service:hover i {
    color: white;
}

.seo-service i {
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.seo-service span {
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.seo-contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.seo-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Unbounded', sans-serif;
}

.seo-contact p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .remote-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .remote-benefits {
        position: static;
    }
}

@media (max-width: 768px) {
    .remote-help {
        padding: 4rem 0;
    }
    
    .remote-features {
        grid-template-columns: 1fr;
    }
    
    .remote-feature {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .benefits-card {
        padding: 2rem;
    }
    
    .remote-seo {
        padding: 2rem 1.5rem;
    }
    
    .seo-services {
        grid-template-columns: 1fr;
    }
    
    .seo-contact {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .remote-help {
        padding: 3rem 0;
    }
    
    .benefits-card {
        padding: 1.5rem;
    }
    
    .benefit-item {
        padding: 0.6rem;
    }
    
    .remote-seo {
        padding: 1.5rem 1rem;
    }
    
    .seo-service {
        padding: 0.8rem;
    }
}