/* Услуги как фрилансер */
.freelance-services {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.freelance-services h2 {
    font-size: 2.8em;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}

.freelance-services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #2962ff, #00b0ff);
    border-radius: 3px;
}

.services-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1em;
    color: #555;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    padding: 30px 25px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #2962ff;
    color: white;
    padding: 5px 40px;
    font-size: 0.85em;
    font-weight: bold;
    transform: rotate(45deg);
    z-index: 2;
}

.pricing-header h3 {
    font-size: 1.4em;
    color: #2962ff;
    margin-bottom: 10px;
}

.price {
    font-size: 1.8em;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.pricing-body p {
    color: #555;
    margin-bottom: 15px;
    font-size: 0.95em;
    line-height: 1.6;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.pricing-body li {
    padding: 8px 0;
    font-size: 0.95em;
    color: #2d2d2d;
    position: relative;
    padding-left: 20px;
}

.pricing-body li::before {
    content: '✓';
    color: #2962ff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.popular {
    border: 2px solid #2962ff;
}
.enterprise {
    background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
    border: 2px solid #4fc3f7;
}

.enterprise .pricing-header h3 {
    color: #0288d1;
}

.enterprise .price {
    color: #01579b;
    font-weight: 800;
