/* Стили только для Services секции */
.services-section {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #f9fbfd 50%, 
        #f2f7fc 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.03) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 1;
}

.services-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 128, 185, 0.03) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    z-index: 1;
}

.services-section .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.services-section .section-title {
    text-align: center;
    margin-bottom: 70px;
}

.services-section .section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a2a3a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.services-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border-radius: 2px;
}

.services-section .section-title p {
    font-size: 1.3rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.6;
}

.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.services-section .service-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.05),
        0 1px 5px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.services-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(39, 174, 96, 0.1);
    border-color: rgba(39, 174, 96, 0.2);
}

.services-section .service-card.premium {
    border: 2px solid rgba(243, 156, 18, 0.3);
    box-shadow: 
        0 5px 20px rgba(243, 156, 18, 0.1),
        0 1px 5px rgba(243, 156, 18, 0.05);
}

.services-section .service-card.premium:hover {
    box-shadow: 
        0 20px 40px rgba(243, 156, 18, 0.15),
        0 8px 16px rgba(243, 156, 18, 0.1);
}

.services-section .service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.3);
}

.services-section .service-badge.premium {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 3px 10px rgba(243, 156, 18, 0.3);
}

.services-section .service-icon {
    font-size: 3.5rem;
    color: #27ae60;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-section .service-card.premium .service-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-section .service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.services-section .service-card:hover h3 {
    color: #27ae60;
}

.services-section .service-card.premium:hover h3 {
    color: #f39c12;
}

.services-section .service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 25px;
    min-height: 60px;
}

.services-section .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px;
}

.services-section .service-features li {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.services-section .service-features li:last-child {
    margin-bottom: 0;
}

.services-section .service-features li i {
    color: #27ae60;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.services-section .service-card.premium .service-features li i {
    color: #f39c12;
}

.services-section .service-features li strong {
    color: #1a2a3a;
    font-weight: 600;
    margin-right: 5px;
}

.services-section .service-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.services-section .service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 12px rgba(39, 174, 96, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.08);
    border: none;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.services-section .service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e8449 0%, #27ae60 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.services-section .service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 20px rgba(39, 174, 96, 0.35),
        0 3px 8px rgba(0, 0, 0, 0.1);
}

.services-section .service-btn:hover::before {
    opacity: 1;
}

.services-section .service-btn.premium {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    box-shadow: 
        0 4px 12px rgba(243, 156, 18, 0.25),
        0 1px 3px rgba(0, 0, 0, 0.08);
}

.services-section .service-btn.premium::before {
    background: linear-gradient(135deg, #d68910 0%, #f39c12 100%);
}

.services-section .service-btn.premium:hover {
    box-shadow: 
        0 8px 20px rgba(243, 156, 18, 0.35),
        0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Анимация появления элементов */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-section .service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.services-section .service-card:nth-child(1) { animation-delay: 0.1s; }
.services-section .service-card:nth-child(2) { animation-delay: 0.2s; }
.services-section .service-card:nth-child(3) { animation-delay: 0.3s; }
.services-section .service-card:nth-child(4) { animation-delay: 0.4s; }
.services-section .service-card:nth-child(5) { animation-delay: 0.5s; }
.services-section .service-card:nth-child(6) { animation-delay: 0.6s; }
.services-section .service-card:nth-child(7) { animation-delay: 0.7s; }

/* Адаптивность */
@media (max-width: 1200px) {
    .services-section .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-section .section-title h2 {
        font-size: 2.4rem;
    }
    
    .services-section .section-title p {
        font-size: 1.2rem;
    }
    
    .services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-section .service-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 70px 0;
    }
    
    .services-section .section-title h2 {
        font-size: 2.2rem;
    }
    
    .services-section .section-title p {
        font-size: 1.1rem;
    }
    
    .services-section .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-section .service-card {
        padding: 30px 25px;
    }
    
    .services-section .service-card h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section .section-title h2 {
        font-size: 2rem;
    }
    
    .services-section .service-card {
        padding: 25px 20px;
    }
    
    .services-section .service-card h3 {
        font-size: 1.3rem;
    }
    
    .services-section .service-card p {
        font-size: 1rem;
    }
    
    .services-section .service-features li {
        font-size: 0.95rem;
    }
}