.card-soft {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    transition: all 0.4s ease;
}

.card-soft:hover {
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
    transform: translateY(-4px);
}

.pricing-card {
    padding: 56px;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    margin-bottom: 40px;
}

.pricing-title {
    font-size: 2rem;
    margin-bottom: 12px;
}

.pricing-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.price-row:last-child {
    border-bottom: none;
}

.price-service {
    font-size: 1.2rem;
    color: #0f172a;
    font-weight: 500;
}

.price-note {
    font-size: 1rem;
    color: #94a3b8;
    margin-top: 6px;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6366f1;
}

.price-value.free {
    color: #10b981;
}
